Skip to content

Commit 32a57bf

Browse files
jacobly0mlugg
authored andcommitted
Legalize: update for new Block API
1 parent d9b6d1e commit 32a57bf

File tree

2 files changed

+139
-174
lines changed

2 files changed

+139
-174
lines changed

src/Air.zig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,10 +1241,10 @@ pub const CondBr = struct {
12411241
else_body_len: u32,
12421242
branch_hints: BranchHints,
12431243
pub const BranchHints = packed struct(u32) {
1244-
true: std.builtin.BranchHint,
1245-
false: std.builtin.BranchHint,
1246-
then_cov: CoveragePoint,
1247-
else_cov: CoveragePoint,
1244+
true: std.builtin.BranchHint = .none,
1245+
false: std.builtin.BranchHint = .none,
1246+
then_cov: CoveragePoint = .none,
1247+
else_cov: CoveragePoint = .none,
12481248
_: u24 = 0,
12491249
};
12501250
};

0 commit comments

Comments
 (0)