Skip to content

Commit 7a78bb6

Browse files
committed
zig fmt
1 parent d329677 commit 7a78bb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/codegen/llvm.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10420,7 +10420,7 @@ pub const FuncGen = struct {
1042010420
const source_bit_set = try self.wip.icmp(.ne, source_bit, zero, "");
1042110421
const bit_or_zero = try self.wip.select(.normal, source_bit_set, bit, zero, ""); // avoid using control flow
1042210422
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(), "");
1042410424
const while_cond = try self.wip.icmp(.ne, new_mask, zero, "");
1042510425
_ = try self.wip.brCond(while_cond, loop_block, after_block);
1042610426

@@ -10577,7 +10577,7 @@ pub const FuncGen = struct {
1057710577
const source_bit_set = try self.wip.icmp(.ne, source_bit, zero, "");
1057810578
const bb_or_zero = try self.wip.select(.normal, source_bit_set, bb_phi.toValue(), zero, ""); // avoid using control flow
1057910579
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(), "");
1058110581
const while_cond = try self.wip.icmp(.ne, new_mask, zero, "");
1058210582
_ = try self.wip.brCond(while_cond, loop_block, after_block);
1058310583

0 commit comments

Comments
 (0)