Add some linebreaks in the ir_print_visitor of if statement bodies.

This commit is contained in:
Eric Anholt 2010-04-06 12:13:02 -07:00
parent 70b74928a2
commit b94e402cff

View file

@ -281,6 +281,7 @@ ir_print_visitor::visit(ir_if *ir)
ir_instruction *const inst = (ir_instruction *) iter.get();
inst->accept(this);
printf("\n");
}
printf(")\n");
@ -289,6 +290,7 @@ ir_print_visitor::visit(ir_if *ir)
ir_instruction *const inst = (ir_instruction *) iter.get();
inst->accept(this);
printf("\n");
}
printf("))\n");
}