diff options
author | Mike Pall <mike> | 2010-02-15 16:41:52 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-02-15 16:41:52 +0100 |
commit | b838cd8dca67c8ea251faf71408a9d4c45fd0daf (patch) | |
tree | 1c1df6b4b3cd66c6490f4f9cccc3f92b8bb1d6c1 /src/lj_trace.h | |
parent | 1288e04186d5ab48127696d685d622da1f42019c (diff) | |
download | luajit-b838cd8dca67c8ea251faf71408a9d4c45fd0daf.tar.gz luajit-b838cd8dca67c8ea251faf71408a9d4c45fd0daf.tar.bz2 luajit-b838cd8dca67c8ea251faf71408a9d4c45fd0daf.zip |
Minor cleanup of trace event handling.
Diffstat (limited to '')
-rw-r--r-- | src/lj_trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_trace.h b/src/lj_trace.h index 0d4e30e0..a8e45974 100644 --- a/src/lj_trace.h +++ b/src/lj_trace.h | |||
@@ -31,7 +31,7 @@ LJ_FUNC int lj_trace_flushall(lua_State *L); | |||
31 | LJ_FUNC void lj_trace_freestate(global_State *g); | 31 | LJ_FUNC void lj_trace_freestate(global_State *g); |
32 | 32 | ||
33 | /* Event handling. */ | 33 | /* Event handling. */ |
34 | LJ_FUNC void lj_trace_ins(jit_State *J); | 34 | LJ_FUNC void lj_trace_ins(jit_State *J, const BCIns *pc); |
35 | LJ_FUNCA void LJ_FASTCALL lj_trace_hot(jit_State *J, const BCIns *pc); | 35 | LJ_FUNCA void LJ_FASTCALL lj_trace_hot(jit_State *J, const BCIns *pc); |
36 | LJ_FUNCA void * LJ_FASTCALL lj_trace_exit(jit_State *J, void *exptr); | 36 | LJ_FUNCA void * LJ_FASTCALL lj_trace_exit(jit_State *J, void *exptr); |
37 | 37 | ||