summaryrefslogtreecommitdiff
path: root/src/lj_frame.h
diff options
context:
space:
mode:
authorMike Pall <mike>2017-07-26 09:52:19 +0200
committerMike Pall <mike>2017-07-26 09:52:19 +0200
commitfd37da0d586c331b0008fbfd653a9659344fe76f (patch)
tree2ae660cbdbe316ac4affecf5d4f4cf6e013f2b69 /src/lj_frame.h
parent7e662e4f87134f1e84f7bea80933e033c5bf53a3 (diff)
downloadluajit-fd37da0d586c331b0008fbfd653a9659344fe76f.tar.gz
luajit-fd37da0d586c331b0008fbfd653a9659344fe76f.tar.bz2
luajit-fd37da0d586c331b0008fbfd653a9659344fe76f.zip
PPC: Add soft-float support to interpreter.
Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
Diffstat (limited to 'src/lj_frame.h')
-rw-r--r--src/lj_frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_frame.h b/src/lj_frame.h
index 19c49a4a..04cb5a35 100644
--- a/src/lj_frame.h
+++ b/src/lj_frame.h
@@ -226,7 +226,7 @@ enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */
226#define CFRAME_OFS_L 36 226#define CFRAME_OFS_L 36
227#define CFRAME_OFS_PC 32 227#define CFRAME_OFS_PC 32
228#define CFRAME_OFS_MULTRES 28 228#define CFRAME_OFS_MULTRES 28
229#define CFRAME_SIZE 272 229#define CFRAME_SIZE (LJ_ARCH_HASFPU ? 272 : 128)
230#define CFRAME_SHIFT_MULTRES 3 230#define CFRAME_SHIFT_MULTRES 3
231#endif 231#endif
232#elif LJ_TARGET_MIPS32 232#elif LJ_TARGET_MIPS32