aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Pall <mike>2011-04-18 23:44:06 +0200
committerMike Pall <mike>2011-04-18 23:44:06 +0200
commit4fbacaf887d9b891f385eea835d2a18fdb752ac2 (patch)
treea2021ecdc5f432ff5207f3c23b43b22748457b42 /src
parenta1ffb6114f2e2651831e7abc44dd313b7ee5ac97 (diff)
downloadluajit-4fbacaf887d9b891f385eea835d2a18fdb752ac2.tar.gz
luajit-4fbacaf887d9b891f385eea835d2a18fdb752ac2.tar.bz2
luajit-4fbacaf887d9b891f385eea835d2a18fdb752ac2.zip
ARM: Allow compilation in thumb mode (CCOPT_ARM=-mthumb).
Diffstat (limited to 'src')
-rw-r--r--src/lj_arch.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lj_arch.h b/src/lj_arch.h
index f9854239..3ddc3e46 100644
--- a/src/lj_arch.h
+++ b/src/lj_arch.h
@@ -190,9 +190,6 @@
190#if defined(__ARMEB__) 190#if defined(__ARMEB__)
191#error "No support for big-endian ARM" 191#error "No support for big-endian ARM"
192#endif 192#endif
193#if defined(__thumb__) || defined(__thumb2__)
194#error "No support for Thumb instruction set (yet)"
195#endif
196#if !__ARM_EABI__ 193#if !__ARM_EABI__
197#error "Only ARM EABI is supported" 194#error "Only ARM EABI is supported"
198#endif 195#endif