summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf/lightning/arm/fp.h
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-09-11 20:17:50 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-09-11 20:17:50 +0000
commitbfafdbfec33e0dc1d1bda0d0cfe2fd0555c45acc (patch)
treeebfa64730dd9cbd28c6ecbd07fcd748c85fb6fe8 /src/runtime/c/pgf/lightning/arm/fp.h
parent8a3b97e6a504cb37f07013378e687eb103b0e50d (diff)
rewrite the ARM port of GNU lightning to a form compatible with the versions for the other CPUs
Diffstat (limited to 'src/runtime/c/pgf/lightning/arm/fp.h')
-rw-r--r--src/runtime/c/pgf/lightning/arm/fp.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/runtime/c/pgf/lightning/arm/fp.h b/src/runtime/c/pgf/lightning/arm/fp.h
index 58ed13b52..78fa7577e 100644
--- a/src/runtime/c/pgf/lightning/arm/fp.h
+++ b/src/runtime/c/pgf/lightning/arm/fp.h
@@ -45,9 +45,10 @@ jit_hard_order[6] = {
#define JIT_FPR(n) \
(jit_hardfp_p() ? jit_hard_order[n] : jit_soft_order[n])
-#include "fp-swf.h"
-#include "fp-vfp.h"
+#include "arm/fp-swf.h"
+#include "arm/fp-vfp.h"
+#if 0
#define jit_movr_f(r0, r1) arm_movr_f(_jit, r0, r1)
__jit_inline void
arm_movr_f(jit_state_t _jit, jit_fpr_t r0, jit_fpr_t r1)
@@ -1103,5 +1104,5 @@ arm_retval_d(jit_state_t _jit, jit_fpr_t r0)
}
/* else assume chaining call to jit_retval_d as done in tests/funcfp.c */
}
-
+#endif
#endif /* __lightning_fp_arm_h */