Skip to content

(test arm ci) #3945

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/arm64/emit.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1160,10 +1160,10 @@ let assembly_code_for_allocation i ~local ~n ~far ~dbginfo =
emit_subimm reg_alloc_ptr reg_alloc_ptr n;
DSL.ins I.CMP [| DSL.emit_reg reg_alloc_ptr; DSL.emit_reg reg_tmp1 |];
(if not far
then DSL.ins (I.B_cond CC) [| DSL.emit_label lbl_call_gc |]
then DSL.ins (I.B_cond LS) [| DSL.emit_label lbl_call_gc |]
else
let lbl = L.create Text in
DSL.ins (I.B_cond CS) [| DSL.emit_label lbl |];
DSL.ins (I.B_cond HI) [| DSL.emit_label lbl |];
DSL.ins I.B [| DSL.emit_label lbl_call_gc |];
D.define_label lbl);
DSL.labeled_ins lbl_after_alloc I.ADD
Expand Down
Loading