summaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
authorMike Pall <mike>2012-06-10 01:38:44 +0200
committerMike Pall <mike>2012-06-10 02:01:25 +0200
commitb8f5727ab4ab5656b19cdb2c71a92611836b5458 (patch)
treeafff6234da61ae8d3a513359a68c88cdb7b6159c /src/lj_jit.h
parent37be8a54785b893f531679adb0b479a426938504 (diff)
downloadluajit-b8f5727ab4ab5656b19cdb2c71a92611836b5458.tar.gz
luajit-b8f5727ab4ab5656b19cdb2c71a92611836b5458.tar.bz2
luajit-b8f5727ab4ab5656b19cdb2c71a92611836b5458.zip
CONSOLE: Fix PS3 build.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index 6d317a9e..28cdd17a 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -35,15 +35,12 @@
35#define JIT_F_CPU_FIRST JIT_F_ARMV6 35#define JIT_F_CPU_FIRST JIT_F_ARMV6
36#define JIT_F_CPUSTRING "\5ARMv6\7ARMv6T2\5ARMv7" 36#define JIT_F_CPUSTRING "\5ARMv6\7ARMv6T2\5ARMv7"
37#elif LJ_TARGET_PPC 37#elif LJ_TARGET_PPC
38#define JIT_F_PPC64 0x00000010 38#define JIT_F_SQRT 0x00000010
39#define JIT_F_SQRT 0x00000020 39#define JIT_F_ROUND 0x00000020
40#define JIT_F_ROUND 0x00000040
41#define JIT_F_CELL 0x00000080
42#define JIT_F_XENON 0x00000100
43 40
44/* Names for the CPU-specific flags. Must match the order above. */ 41/* Names for the CPU-specific flags. Must match the order above. */
45#define JIT_F_CPU_FIRST JIT_F_PPC64 42#define JIT_F_CPU_FIRST JIT_F_SQRT
46#define JIT_F_CPUSTRING "\5PPC64\4SQRT\5ROUND\4CELL\5XENON" 43#define JIT_F_CPUSTRING "\4SQRT\5ROUND"
47#elif LJ_TARGET_MIPS 44#elif LJ_TARGET_MIPS
48#define JIT_F_MIPS32R2 0x00000010 45#define JIT_F_MIPS32R2 0x00000010
49 46