diff options
| author | Mike Pall <mike> | 2013-09-18 15:17:39 +0200 |
|---|---|---|
| committer | Mike Pall <mike> | 2013-09-18 15:17:39 +0200 |
| commit | a51b8bf6b45a427c21a4498d2a0214cb7af341f3 (patch) | |
| tree | 24ae0132445d995aeb5548bedf15bde7fe1befbb /src | |
| parent | b30a789ab8513f58c9696ed1e20042065e0fcef0 (diff) | |
| download | luajit-a51b8bf6b45a427c21a4498d2a0214cb7af341f3.tar.gz luajit-a51b8bf6b45a427c21a4498d2a0214cb7af341f3.tar.bz2 luajit-a51b8bf6b45a427c21a4498d2a0214cb7af341f3.zip | |
Fix build with profiler but without JIT compiler.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.dep | 6 | ||||
| -rw-r--r-- | src/lib_jit.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.dep b/src/Makefile.dep index 6348d483..a285df2c 100644 --- a/src/Makefile.dep +++ b/src/Makefile.dep | |||
| @@ -24,9 +24,9 @@ lib_io.o: lib_io.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ | |||
| 24 | lj_strfmt.h lj_ff.h lj_ffdef.h lj_lib.h lj_libdef.h | 24 | lj_strfmt.h lj_ff.h lj_ffdef.h lj_lib.h lj_libdef.h |
| 25 | lib_jit.o: lib_jit.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ | 25 | lib_jit.o: lib_jit.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ |
| 26 | lj_arch.h lj_gc.h lj_err.h lj_errmsg.h lj_debug.h lj_str.h lj_tab.h \ | 26 | lj_arch.h lj_gc.h lj_err.h lj_errmsg.h lj_debug.h lj_str.h lj_tab.h \ |
| 27 | lj_state.h lj_bc.h lj_ctype.h lj_ir.h lj_jit.h lj_trace.h lj_dispatch.h \ | 27 | lj_state.h lj_bc.h lj_ctype.h lj_ir.h lj_jit.h lj_ircall.h lj_iropt.h \ |
| 28 | lj_traceerr.h lj_ircall.h lj_iropt.h lj_target.h lj_target_*.h lj_vm.h \ | 28 | lj_target.h lj_target_*.h lj_trace.h lj_dispatch.h lj_traceerr.h \ |
| 29 | lj_vmevent.h lj_lib.h luajit.h lj_libdef.h | 29 | lj_vm.h lj_vmevent.h lj_lib.h luajit.h lj_libdef.h |
| 30 | lib_math.o: lib_math.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h \ | 30 | lib_math.o: lib_math.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h \ |
| 31 | lj_def.h lj_arch.h lj_lib.h lj_vm.h lj_libdef.h | 31 | lj_def.h lj_arch.h lj_lib.h lj_vm.h lj_libdef.h |
| 32 | lib_os.o: lib_os.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ | 32 | lib_os.o: lib_os.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ |
diff --git a/src/lib_jit.c b/src/lib_jit.c index 7bb642cb..a87e1833 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c | |||
| @@ -24,11 +24,11 @@ | |||
| 24 | #if LJ_HASJIT | 24 | #if LJ_HASJIT |
| 25 | #include "lj_ir.h" | 25 | #include "lj_ir.h" |
| 26 | #include "lj_jit.h" | 26 | #include "lj_jit.h" |
| 27 | #include "lj_trace.h" | ||
| 28 | #include "lj_ircall.h" | 27 | #include "lj_ircall.h" |
| 29 | #include "lj_iropt.h" | 28 | #include "lj_iropt.h" |
| 30 | #include "lj_target.h" | 29 | #include "lj_target.h" |
| 31 | #endif | 30 | #endif |
| 31 | #include "lj_trace.h" | ||
| 32 | #include "lj_dispatch.h" | 32 | #include "lj_dispatch.h" |
| 33 | #include "lj_vm.h" | 33 | #include "lj_vm.h" |
| 34 | #include "lj_vmevent.h" | 34 | #include "lj_vmevent.h" |
