diff options
author | Mike Pall <mike> | 2016-05-23 01:49:00 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2016-05-23 01:49:00 +0200 |
commit | 6c8258d74b7d4ae7f288897518f23c809b9395f2 (patch) | |
tree | 7479dce31b17ed704f20ee3920b6de6696521f26 /src/lj_arch.h | |
parent | 8f868a9d02340bae8b3b4a703118b324213f5c6d (diff) | |
download | luajit-6c8258d74b7d4ae7f288897518f23c809b9395f2.tar.gz luajit-6c8258d74b7d4ae7f288897518f23c809b9395f2.tar.bz2 luajit-6c8258d74b7d4ae7f288897518f23c809b9395f2.zip |
LJ_FR2: Add support for trace recording and snapshots.
Contributed by Peter Cawley.
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 612c7303..72622a21 100644 --- a/src/lj_arch.h +++ b/src/lj_arch.h | |||
@@ -453,7 +453,7 @@ | |||
453 | #endif | 453 | #endif |
454 | 454 | ||
455 | /* Disable or enable the JIT compiler. */ | 455 | /* Disable or enable the JIT compiler. */ |
456 | #if defined(LUAJIT_DISABLE_JIT) || defined(LJ_ARCH_NOJIT) || defined(LJ_OS_NOJIT) || LJ_FR2 || LJ_GC64 | 456 | #if defined(LUAJIT_DISABLE_JIT) || defined(LJ_ARCH_NOJIT) || defined(LJ_OS_NOJIT) || LJ_GC64 |
457 | #define LJ_HASJIT 0 | 457 | #define LJ_HASJIT 0 |
458 | #else | 458 | #else |
459 | #define LJ_HASJIT 1 | 459 | #define LJ_HASJIT 1 |