aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pall <mike>2015-02-25 18:12:14 +0100
committerMike Pall <mike>2015-02-25 18:12:14 +0100
commite1a8f3ba0b8cee42ca82655e891d16b46912d339 (patch)
treeabbb00d6d736e22ab9415d11f72062a1f9285db9
parent906008d46762df38c037ff0a93d03b8067b6e499 (diff)
parent5c0e33c2aaf101aba623d7ebf1282989a8e0d114 (diff)
downloadluajit-e1a8f3ba0b8cee42ca82655e891d16b46912d339.tar.gz
luajit-e1a8f3ba0b8cee42ca82655e891d16b46912d339.tar.bz2
luajit-e1a8f3ba0b8cee42ca82655e891d16b46912d339.zip
Merge branch 'master' into v2.1
-rw-r--r--src/lj_arch.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lj_arch.h b/src/lj_arch.h
index 6b5cd1bd..54d5cd22 100644
--- a/src/lj_arch.h
+++ b/src/lj_arch.h
@@ -179,7 +179,9 @@
179#define LJ_TARGET_UNIFYROT 2 /* Want only IR_BROR. */ 179#define LJ_TARGET_UNIFYROT 2 /* Want only IR_BROR. */
180#define LJ_ARCH_NUMMODE LJ_NUMMODE_DUAL 180#define LJ_ARCH_NUMMODE LJ_NUMMODE_DUAL
181 181
182#if __ARM_ARCH_7__ || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH_7S__ 182#if __ARM_ARCH____ARM_ARCH_8__ || __ARM_ARCH_8A__
183#define LJ_ARCH_VERSION 80
184#elif __ARM_ARCH_7__ || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH_7S__ || __ARM_ARCH_7VE__
183#define LJ_ARCH_VERSION 70 185#define LJ_ARCH_VERSION 70
184#elif __ARM_ARCH_6T2__ 186#elif __ARM_ARCH_6T2__
185#define LJ_ARCH_VERSION 61 187#define LJ_ARCH_VERSION 61
@@ -356,6 +358,9 @@
356#if defined(__mips_soft_float) 358#if defined(__mips_soft_float)
357#error "No support for MIPS CPUs without FPU" 359#error "No support for MIPS CPUs without FPU"
358#endif 360#endif
361#if defined(_LP64)
362#error "No support for MIPS64"
363#endif
359#endif 364#endif
360#endif 365#endif
361 366