Minor fixes for x64 interpreter.
[luajit-2.0/celess22.git] / src / lj_record.h
blob7bb7952c40313e1c8d4cb4ce398956a2f047ad83
1 /*
2 ** Trace recorder (bytecode -> SSA IR).
3 ** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h
4 */
6 #ifndef _LJ_RECORD_H
7 #define _LJ_RECORD_H
9 #include "lj_obj.h"
10 #include "lj_jit.h"
12 #if LJ_HASJIT
13 LJ_FUNC void lj_record_ins(jit_State *J);
14 LJ_FUNC void lj_record_setup(jit_State *J);
15 #endif
17 #endif