aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-12-05 21:39:15 -0500
committerAndrew Kelley <superjoe30@gmail.com>2016-12-05 21:39:15 -0500
commit0c531d447df88ed6c46e759fbfc9d253d2650c22 (patch)
treef2c83b6c7c099e155f3b1ff58186f907e5494126 /src/ir_print.cpp
parentbed83bc5a14aa6c0480dcfa842d97cce64427e1b (diff)
downloadzig-0c531d447df88ed6c46e759fbfc9d253d2650c22.tar.gz
zig-0c531d447df88ed6c46e759fbfc9d253d2650c22.zip
remove the boolean argument from setFnTest
Diffstat (limited to 'src/ir_print.cpp')
-rw-r--r--src/ir_print.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp
index 7f27ab104b..16a0ae3c78 100644
--- a/src/ir_print.cpp
+++ b/src/ir_print.cpp
@@ -491,8 +491,6 @@ static void ir_print_enum_field_ptr(IrPrint *irp, IrInstructionEnumFieldPtr *ins
static void ir_print_set_fn_test(IrPrint *irp, IrInstructionSetFnTest *instruction) {
fprintf(irp->f, "@setFnTest(");
ir_print_other_instruction(irp, instruction->fn_value);
- fprintf(irp->f, ", ");
- ir_print_other_instruction(irp, instruction->is_test);
fprintf(irp->f, ")");
}