aboutsummaryrefslogtreecommitdiff
path: root/src/lj_asm_x86.h
diff options
context:
space:
mode:
authorMike Pall <mike>2021-09-19 16:09:48 +0200
committerMike Pall <mike>2021-09-19 16:09:48 +0200
commitf2d333c1ac0f33fe5a7386d4e66f0f6c57c2616e (patch)
tree5864c58bf82417de940bcce64767d1212fdcb429 /src/lj_asm_x86.h
parent8ff09d9f5ad5b037926be2a50dc32b681c5e7597 (diff)
downloadluajit-f2d333c1ac0f33fe5a7386d4e66f0f6c57c2616e.tar.gz
luajit-f2d333c1ac0f33fe5a7386d4e66f0f6c57c2616e.tar.bz2
luajit-f2d333c1ac0f33fe5a7386d4e66f0f6c57c2616e.zip
MIPS: Fix trace linking.
Diffstat (limited to 'src/lj_asm_x86.h')
-rw-r--r--src/lj_asm_x86.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lj_asm_x86.h b/src/lj_asm_x86.h
index c8ed46d2..3c934c31 100644
--- a/src/lj_asm_x86.h
+++ b/src/lj_asm_x86.h
@@ -2863,6 +2863,12 @@ static void asm_loop_fixup(ASMState *as)
2863 } 2863 }
2864} 2864}
2865 2865
2866/* Fixup the tail of the loop. */
2867static void asm_loop_tail_fixup(ASMState *as)
2868{
2869 UNUSED(as); /* Nothing to do. */
2870}
2871
2866/* -- Head of trace ------------------------------------------------------- */ 2872/* -- Head of trace ------------------------------------------------------- */
2867 2873
2868/* Coalesce BASE register for a root trace. */ 2874/* Coalesce BASE register for a root trace. */