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