diff options
Diffstat (limited to 'src/lj_gdbjit.h')
-rw-r--r-- | src/lj_gdbjit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_gdbjit.h b/src/lj_gdbjit.h index 037d3344..7824885b 100644 --- a/src/lj_gdbjit.h +++ b/src/lj_gdbjit.h | |||
@@ -11,11 +11,11 @@ | |||
11 | 11 | ||
12 | #if LJ_HASJIT && defined(LUAJIT_USE_GDBJIT) | 12 | #if LJ_HASJIT && defined(LUAJIT_USE_GDBJIT) |
13 | 13 | ||
14 | LJ_FUNC void lj_gdbjit_addtrace(jit_State *J, GCtrace *T, TraceNo traceno); | 14 | LJ_FUNC void lj_gdbjit_addtrace(jit_State *J, GCtrace *T); |
15 | LJ_FUNC void lj_gdbjit_deltrace(jit_State *J, GCtrace *T); | 15 | LJ_FUNC void lj_gdbjit_deltrace(jit_State *J, GCtrace *T); |
16 | 16 | ||
17 | #else | 17 | #else |
18 | #define lj_gdbjit_addtrace(J, T, tn) UNUSED(T) | 18 | #define lj_gdbjit_addtrace(J, T) UNUSED(T) |
19 | #define lj_gdbjit_deltrace(J, T) UNUSED(T) | 19 | #define lj_gdbjit_deltrace(J, T) UNUSED(T) |
20 | #endif | 20 | #endif |
21 | 21 | ||