diff options
author | Mike Pall <mike> | 2015-04-28 20:46:59 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2015-04-28 20:52:24 +0200 |
commit | c2924c3e1d17ffe469a654233481d7be1248d7e0 (patch) | |
tree | a9e16feae05467c271eed06427c75ad57d337e96 /src/lj_traceerr.h | |
parent | 74caac97ae757131f126f0a690ab460ff44ccc52 (diff) | |
download | luajit-c2924c3e1d17ffe469a654233481d7be1248d7e0.tar.gz luajit-c2924c3e1d17ffe469a654233481d7be1248d7e0.tar.bz2 luajit-c2924c3e1d17ffe469a654233481d7be1248d7e0.zip |
Disable trace stitching (for now) due to a design mistake.
Thanks to Elias Hogstvedt for finding a test case for a well known,
but hard to track down issue with trace stitching.
Diffstat (limited to '')
-rw-r--r-- | src/lj_traceerr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_traceerr.h b/src/lj_traceerr.h index 6b377cb0..5a2fe8bb 100644 --- a/src/lj_traceerr.h +++ b/src/lj_traceerr.h | |||
@@ -24,6 +24,8 @@ TREDEF(BADTYPE, "bad argument type") | |||
24 | TREDEF(CJITOFF, "JIT compilation disabled for function") | 24 | TREDEF(CJITOFF, "JIT compilation disabled for function") |
25 | TREDEF(CUNROLL, "call unroll limit reached") | 25 | TREDEF(CUNROLL, "call unroll limit reached") |
26 | TREDEF(DOWNREC, "down-recursion, restarting") | 26 | TREDEF(DOWNREC, "down-recursion, restarting") |
27 | TREDEF(NYICF, "NYI: C function %p") | ||
28 | TREDEF(NYIFF, "NYI: FastFunc %s") | ||
27 | TREDEF(NYIFFU, "NYI: unsupported variant of FastFunc %s") | 29 | TREDEF(NYIFFU, "NYI: unsupported variant of FastFunc %s") |
28 | TREDEF(NYIRETL, "NYI: return to lower frame") | 30 | TREDEF(NYIRETL, "NYI: return to lower frame") |
29 | 31 | ||