mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 17:10:11 +01:00
ir_print_visitor: Re-parenthesize ir_call output.
This commit is contained in:
parent
dde9678162
commit
0e385196f6
1 changed files with 2 additions and 2 deletions
|
|
@ -260,13 +260,13 @@ void ir_print_visitor::visit(ir_constant *ir)
|
|||
void
|
||||
ir_print_visitor::visit(ir_call *ir)
|
||||
{
|
||||
printf("(call (%s) ", ir->callee_name());
|
||||
printf("(call %s (", ir->callee_name());
|
||||
foreach_iter(exec_list_iterator, iter, *ir) {
|
||||
ir_instruction *const inst = (ir_instruction *) iter.get();
|
||||
|
||||
inst->accept(this);
|
||||
}
|
||||
printf(")\n");
|
||||
printf("))\n");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue