Skip to content

Commit

Permalink
Switch back to 32-bit operation.
Browse files Browse the repository at this point in the history
Switch to 64-bit operation in 4c3389b
was my mistake.
  • Loading branch information
dstogov committed Jan 14, 2025
1 parent 4c3389b commit d6d7fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ir_fold.h
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ IR_FOLD(SUB(C_I16, C_I16))
IR_FOLD(SUB(C_I32, C_I32))
{
IR_ASSERT(IR_OPT_TYPE(opt) == op1_insn->type);
IR_FOLD_CONST_I((int32_t)(op1_insn->val.u64 - op2_insn->val.u64));
IR_FOLD_CONST_I((int32_t)(op1_insn->val.u32 - op2_insn->val.u32));
}

IR_FOLD(SUB(C_I64, C_I64))
Expand Down

0 comments on commit d6d7fc4

Please sign in to comment.