diff options
author | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
commit | 721b73fecbbeda5b5cb76628511c5b3fac41eb4d (patch) | |
tree | ce72efaa313ab16eda652e4d277413c31a8d2af3 /src/lj_asm.h | |
parent | 3a32bbc7cb5c2287e8d4e24e362281c165f50976 (diff) | |
download | luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.gz luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.bz2 luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.zip |
Turn traces into true GC objects (GCtrace).
Diffstat (limited to 'src/lj_asm.h')
-rw-r--r-- | src/lj_asm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_asm.h b/src/lj_asm.h index 7502c49c..9df6dd5d 100644 --- a/src/lj_asm.h +++ b/src/lj_asm.h | |||
@@ -9,8 +9,8 @@ | |||
9 | #include "lj_jit.h" | 9 | #include "lj_jit.h" |
10 | 10 | ||
11 | #if LJ_HASJIT | 11 | #if LJ_HASJIT |
12 | LJ_FUNC void lj_asm_trace(jit_State *J, Trace *T); | 12 | LJ_FUNC void lj_asm_trace(jit_State *J, GCtrace *T); |
13 | LJ_FUNC void lj_asm_patchexit(jit_State *J, Trace *T, ExitNo exitno, | 13 | LJ_FUNC void lj_asm_patchexit(jit_State *J, GCtrace *T, ExitNo exitno, |
14 | MCode *target); | 14 | MCode *target); |
15 | #endif | 15 | #endif |
16 | 16 | ||