diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.dep | 10 | ||||
| -rw-r--r-- | src/lib_jit.c | 2 | ||||
| -rw-r--r-- | src/lj_ffrecord.c | 1 |
3 files changed, 7 insertions, 6 deletions
diff --git a/src/Makefile.dep b/src/Makefile.dep index 3f080374..9ae6043a 100644 --- a/src/Makefile.dep +++ b/src/Makefile.dep | |||
| @@ -22,11 +22,11 @@ lib_init.o: lib_init.c lua.h luaconf.h lauxlib.h lualib.h lj_arch.h | |||
| 22 | lib_io.o: lib_io.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ | 22 | lib_io.o: lib_io.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ |
| 23 | lj_arch.h lj_gc.h lj_err.h lj_errmsg.h lj_buf.h lj_str.h lj_state.h \ | 23 | lj_arch.h lj_gc.h lj_err.h lj_errmsg.h lj_buf.h lj_str.h lj_state.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_arch.h \ | 25 | lib_jit.o: lib_jit.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ |
| 26 | lj_obj.h lj_def.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_gc.h lj_ir.h lj_jit.h lj_ircall.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_iropt.h lj_target.h lj_target_*.h lj_dispatch.h lj_vm.h \ | 28 | lj_target.h lj_target_*.h lj_dispatch.h lj_vm.h lj_vmevent.h lj_lib.h \ |
| 29 | lj_vmevent.h lj_lib.h luajit.h lj_libdef.h | 29 | 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 e8acb55a..be075ce4 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c | |||
| @@ -10,8 +10,8 @@ | |||
| 10 | #include "lauxlib.h" | 10 | #include "lauxlib.h" |
| 11 | #include "lualib.h" | 11 | #include "lualib.h" |
| 12 | 12 | ||
| 13 | #include "lj_arch.h" | ||
| 14 | #include "lj_obj.h" | 13 | #include "lj_obj.h" |
| 14 | #include "lj_gc.h" | ||
| 15 | #include "lj_err.h" | 15 | #include "lj_err.h" |
| 16 | #include "lj_debug.h" | 16 | #include "lj_debug.h" |
| 17 | #include "lj_str.h" | 17 | #include "lj_str.h" |
diff --git a/src/lj_ffrecord.c b/src/lj_ffrecord.c index fcc46319..918cc9cf 100644 --- a/src/lj_ffrecord.c +++ b/src/lj_ffrecord.c | |||
| @@ -659,6 +659,7 @@ static void LJ_FASTCALL recff_bit_tohex(jit_State *J, RecordFFData *rd) | |||
| 659 | TRef tr = recff_bit64_tohex(J, rd, hdr); | 659 | TRef tr = recff_bit64_tohex(J, rd, hdr); |
| 660 | J->base[0] = emitir(IRT(IR_BUFSTR, IRT_STR), tr, hdr); | 660 | J->base[0] = emitir(IRT(IR_BUFSTR, IRT_STR), tr, hdr); |
| 661 | #else | 661 | #else |
| 662 | UNUSED(rd); | ||
| 662 | recff_nyiu(J); /* Don't bother working around this NYI. */ | 663 | recff_nyiu(J); /* Don't bother working around this NYI. */ |
| 663 | #endif | 664 | #endif |
| 664 | } | 665 | } |
