diff options
author | Mike Pall <mike> | 2019-12-08 21:21:30 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2019-12-08 21:21:30 +0100 |
commit | bd00094c3b50e193fb32aad79b7ea8ea6b78ed25 (patch) | |
tree | ce9a51d4a295e76a00f98351348bbbe03f2aa86d /src/lj_arch.h | |
parent | 70f4b15ee45a6137fe6b48b941faea79d72f7159 (diff) | |
download | luajit-bd00094c3b50e193fb32aad79b7ea8ea6b78ed25.tar.gz luajit-bd00094c3b50e193fb32aad79b7ea8ea6b78ed25.tar.bz2 luajit-bd00094c3b50e193fb32aad79b7ea8ea6b78ed25.zip |
x64: Enable LJ_GC64 mode by default.
Diffstat (limited to 'src/lj_arch.h')
-rw-r--r-- | src/lj_arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_arch.h b/src/lj_arch.h index 31a11593..903d6c64 100644 --- a/src/lj_arch.h +++ b/src/lj_arch.h | |||
@@ -184,7 +184,7 @@ | |||
184 | #define LJ_TARGET_MASKROT 1 | 184 | #define LJ_TARGET_MASKROT 1 |
185 | #define LJ_TARGET_UNALIGNED 1 | 185 | #define LJ_TARGET_UNALIGNED 1 |
186 | #define LJ_ARCH_NUMMODE LJ_NUMMODE_SINGLE_DUAL | 186 | #define LJ_ARCH_NUMMODE LJ_NUMMODE_SINGLE_DUAL |
187 | #ifdef LUAJIT_ENABLE_GC64 | 187 | #ifndef LUAJIT_DISABLE_GC64 |
188 | #define LJ_TARGET_GC64 1 | 188 | #define LJ_TARGET_GC64 1 |
189 | #endif | 189 | #endif |
190 | 190 | ||