| ... | ... | @@ -5196,13 +5196,7 @@ fn bitcast(f: *Function, dest_ty: Type, operand: CValue, operand_ty: Type) !CVal |
| 5196 | 5196 | const operand_lval = if (operand == .constant) blk: { |
| 5197 | 5197 | const operand_local = try f.allocLocal(null, operand_ty); |
| 5198 | 5198 | try f.writeCValue(w, operand_local, .Other); |
| 5199 | | if (operand_ty.isAbiInt(zcu)) { |
| 5200 | | try w.writeAll(" = "); |
| 5201 | | } else { |
| 5202 | | try w.writeAll(" = ("); |
| 5203 | | try f.renderType(w, operand_ty); |
| 5204 | | try w.writeByte(')'); |
| 5205 | | } |
| 5199 | try w.writeAll(" = "); |
| 5206 | 5200 | try f.writeCValue(w, operand, .Other); |
| 5207 | 5201 | try w.writeByte(';'); |
| 5208 | 5202 | try f.object.newline(); |