| ... | @@ -3872,12 +3872,12 @@ fn airNot(f: *Function, inst: Air.Inst.Index) !CValue { | ... | @@ -3872,12 +3872,12 @@ fn airNot(f: *Function, inst: Air.Inst.Index) !CValue { |
| 3872 | | 3872 | |
| 3873 | const writer = f.object.writer(); | 3873 | const writer = f.object.writer(); |
| 3874 | const local = try f.allocLocal(inst, inst_ty); | 3874 | const local = try f.allocLocal(inst, inst_ty); |
| | 3875 | |
| 3875 | try f.writeCValue(writer, local, .Other); | 3876 | try f.writeCValue(writer, local, .Other); |
| 3876 | try writer.writeAll(" = "); | 3877 | try writer.writeAll(" = "); |
| 3877 | try writer.writeByte('!'); | 3878 | try writer.writeByte('!'); |
| 3878 | try f.writeCValue(writer, op, .Other); | 3879 | try f.writeCValue(writer, op, .Other); |
| 3879 | try writer.writeAll(";\n"); | 3880 | try writer.writeAll(";\n"); |
| 3880 | | | |
| 3881 | return local; | 3881 | return local; |
| 3882 | } | 3882 | } |
| 3883 | | 3883 | |