Update IR

IR commit: 81ccde4c3f41afb75723db2315403181e5e7cac1

Fixes JIT failures on ARM Linux
This commit is contained in:
Dmitry Stogov 2024-04-17 00:27:34 +03:00
parent bedafdcf4a
commit a2e924e582
No known key found for this signature in database

View file

@ -922,7 +922,9 @@ binop_fp:
return insn->op;
}
case IR_CALL:
ctx->flags |= IR_USE_FRAME_POINTER;
if (ctx->flags & IR_FUNCTION) {
ctx->flags |= IR_USE_FRAME_POINTER;
}
ctx->flags2 |= IR_HAS_CALLS | IR_16B_FRAME_ALIGNMENT;
return IR_CALL;
case IR_VAR: