| ... | ... | @@ -2992,7 +2992,7 @@ fn semaDecl(mod: *Module, decl: *Decl) !bool { |
| 2992 | 2992 | const body = zir.extra[extra.end..][0..extra.data.body_len]; |
| 2993 | 2993 | const break_index = try sema.analyzeBody(&block_scope, body); |
| 2994 | 2994 | const result_ref = zir_datas[break_index].@"break".operand; |
| 2995 | | const src = inst_data.src(); |
| 2995 | const src: LazySrcLoc = .{ .node_offset = 0 }; |
| 2996 | 2996 | const decl_tv = try sema.resolveInstConst(&block_scope, src, result_ref); |
| 2997 | 2997 | const align_val = blk: { |
| 2998 | 2998 | const align_ref = decl.zirAlignRef(); |
| ... | ... | @@ -3729,7 +3729,7 @@ pub fn analyzeExport( |
| 3729 | 3729 | |
| 3730 | 3730 | if (mod.symbol_exports.get(symbol_name)) |other_export| { |
| 3731 | 3731 | new_export.status = .failed_retryable; |
| 3732 | | try mod.failed_exports.ensureCapacity(mod.gpa, mod.failed_exports.items().len + 1); |
| 3732 | try mod.failed_exports.ensureUnusedCapacity(mod.gpa, 1); |
| 3733 | 3733 | const msg = try mod.errMsg( |
| 3734 | 3734 | scope, |
| 3735 | 3735 | src, |