We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9b6d1e commit 32a57bfCopy full SHA for 32a57bf
src/Air.zig
@@ -1241,10 +1241,10 @@ pub const CondBr = struct {
1241
else_body_len: u32,
1242
branch_hints: BranchHints,
1243
pub const BranchHints = packed struct(u32) {
1244
- true: std.builtin.BranchHint,
1245
- false: std.builtin.BranchHint,
1246
- then_cov: CoveragePoint,
1247
- else_cov: CoveragePoint,
+ true: std.builtin.BranchHint = .none,
+ false: std.builtin.BranchHint = .none,
+ then_cov: CoveragePoint = .none,
+ else_cov: CoveragePoint = .none,
1248
_: u24 = 0,
1249
};
1250
0 commit comments