diff options
Diffstat (limited to 'src/lj_errmsg.h')
-rw-r--r-- | src/lj_errmsg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h index da40e848..f368da5a 100644 --- a/src/lj_errmsg.h +++ b/src/lj_errmsg.h | |||
@@ -102,7 +102,11 @@ ERRDEF(STRFMTW, "invalid format (width or precision too long)") | |||
102 | ERRDEF(STRGSRV, "invalid replacement value (a %s)") | 102 | ERRDEF(STRGSRV, "invalid replacement value (a %s)") |
103 | ERRDEF(BADMODN, "name conflict for module " LUA_QS) | 103 | ERRDEF(BADMODN, "name conflict for module " LUA_QS) |
104 | #if LJ_HASJIT | 104 | #if LJ_HASJIT |
105 | #if LJ_TARGET_X86ORX64 | ||
105 | ERRDEF(NOJIT, "JIT compiler disabled, CPU does not support SSE2") | 106 | ERRDEF(NOJIT, "JIT compiler disabled, CPU does not support SSE2") |
107 | #else | ||
108 | ERRDEF(NOJIT, "JIT compiler disabled") | ||
109 | #endif | ||
106 | #elif defined(LJ_ARCH_NOJIT) | 110 | #elif defined(LJ_ARCH_NOJIT) |
107 | ERRDEF(NOJIT, "no JIT compiler for this architecture (yet)") | 111 | ERRDEF(NOJIT, "no JIT compiler for this architecture (yet)") |
108 | #else | 112 | #else |