diff options
Diffstat (limited to 'src/lj_asm_arm.h')
-rw-r--r-- | src/lj_asm_arm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lj_asm_arm.h b/src/lj_asm_arm.h index 196f797e..57c2dd81 100644 --- a/src/lj_asm_arm.h +++ b/src/lj_asm_arm.h | |||
@@ -2264,6 +2264,11 @@ static void asm_ir(ASMState *as, IRIns *ir) | |||
2264 | case IR_TDUP: asm_tdup(as, ir); break; | 2264 | case IR_TDUP: asm_tdup(as, ir); break; |
2265 | case IR_CNEW: case IR_CNEWI: asm_cnew(as, ir); break; | 2265 | case IR_CNEW: case IR_CNEWI: asm_cnew(as, ir); break; |
2266 | 2266 | ||
2267 | /* Buffer operations. */ | ||
2268 | case IR_BUFHDR: asm_bufhdr(as, ir); break; | ||
2269 | case IR_BUFPUT: asm_bufput(as, ir); break; | ||
2270 | case IR_BUFSTR: asm_bufstr(as, ir); break; | ||
2271 | |||
2267 | /* Write barriers. */ | 2272 | /* Write barriers. */ |
2268 | case IR_TBAR: asm_tbar(as, ir); break; | 2273 | case IR_TBAR: asm_tbar(as, ir); break; |
2269 | case IR_OBAR: asm_obar(as, ir); break; | 2274 | case IR_OBAR: asm_obar(as, ir); break; |