diff options
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index d00ba372b4..8f9001edbd 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -585,7 +585,7 @@ static void ir_print_size_of(IrPrint *irp, IrInstructionSizeOf *instruction) { static void ir_print_test_null(IrPrint *irp, IrInstructionTestNull *instruction) { fprintf(irp->f, "*"); ir_print_other_instruction(irp, instruction->value); - fprintf(irp->f, " == null"); + fprintf(irp->f, " != null"); } static void ir_print_unwrap_maybe(IrPrint *irp, IrInstructionUnwrapMaybe *instruction) { |
