diff options
author | Mike Pall <mike> | 2021-09-19 16:09:48 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2021-09-19 16:09:48 +0200 |
commit | f2d333c1ac0f33fe5a7386d4e66f0f6c57c2616e (patch) | |
tree | 5864c58bf82417de940bcce64767d1212fdcb429 /src/lj_asm_x86.h | |
parent | 8ff09d9f5ad5b037926be2a50dc32b681c5e7597 (diff) | |
download | luajit-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.h | 6 |
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. */ | ||
2867 | static 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. */ |