| ... | ... | @@ -603,7 +603,7 @@ stack_alignment: u32 = 16, |
| 603 | 603 | |
| 604 | 604 | const InnerError = error{ |
| 605 | 605 | OutOfMemory, |
| 606 | | /// An error occured when trying to lower AIR to MIR. |
| 606 | /// An error occurred when trying to lower AIR to MIR. |
| 607 | 607 | CodegenFail, |
| 608 | 608 | /// Can occur when dereferencing a pointer that points to a `Decl` of which the analysis has failed |
| 609 | 609 | AnalysisFail, |
| ... | ... | @@ -4410,7 +4410,7 @@ fn airMulWithOverflow(self: *Self, inst: Air.Inst.Index) InnerError!WValue { |
| 4410 | 4410 | } |
| 4411 | 4411 | |
| 4412 | 4412 | // We store the bit if it's overflowed or not in this. As it's zero-initialized |
| 4413 | | // we only need to update it if an overflow (or underflow) occured. |
| 4413 | // we only need to update it if an overflow (or underflow) occurred. |
| 4414 | 4414 | const overflow_bit = try self.allocLocal(Type.initTag(.u1)); |
| 4415 | 4415 | const int_info = lhs_ty.intInfo(self.target); |
| 4416 | 4416 | const wasm_bits = toWasmBits(int_info.bits) orelse { |