@@ -10420,7 +10420,7 @@ pub const FuncGen = struct {
10420
10420
const source_bit_set = try self.wip.icmp(.ne, source_bit, zero, "");
10421
10421
const bit_or_zero = try self.wip.select(.normal, source_bit_set, bit, zero, ""); // avoid using control flow
10422
10422
const new_result = try self.wip.bin(.@"or", result_phi.toValue(), bit_or_zero, "");
10423
- const new_bb = try self.wip.bin(.@" add" , bb_phi.toValue(), bb_phi.toValue(), "");
10423
+ const new_bb = try self.wip.bin(.add, bb_phi.toValue(), bb_phi.toValue(), "");
10424
10424
const while_cond = try self.wip.icmp(.ne, new_mask, zero, "");
10425
10425
_ = try self.wip.brCond(while_cond, loop_block, after_block);
10426
10426
@@ -10577,7 +10577,7 @@ pub const FuncGen = struct {
10577
10577
const source_bit_set = try self.wip.icmp(.ne, source_bit, zero, "");
10578
10578
const bb_or_zero = try self.wip.select(.normal, source_bit_set, bb_phi.toValue(), zero, ""); // avoid using control flow
10579
10579
const new_result = try self.wip.bin(.@"or", result_phi.toValue(), bb_or_zero, "");
10580
- const new_bb = try self.wip.bin(.@" add" , bb_phi.toValue(), bb_phi.toValue(), "");
10580
+ const new_bb = try self.wip.bin(.add, bb_phi.toValue(), bb_phi.toValue(), "");
10581
10581
const while_cond = try self.wip.icmp(.ne, new_mask, zero, "");
10582
10582
_ = try self.wip.brCond(while_cond, loop_block, after_block);
10583
10583
0 commit comments