diff options
Diffstat (limited to 'compiler/optimizing/pretty_printer.h')
-rw-r--r-- | compiler/optimizing/pretty_printer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/pretty_printer.h b/compiler/optimizing/pretty_printer.h index 429e6e3d3f..ee32518c01 100644 --- a/compiler/optimizing/pretty_printer.h +++ b/compiler/optimizing/pretty_printer.h @@ -55,13 +55,13 @@ class HPrettyPrinter : public HGraphVisitor { if (instruction->HasUses()) { PrintString(" ["); bool first = true; - for (HUseIterator<HInstruction*> it(instruction->GetUses()); !it.Done(); it.Advance()) { + for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) { if (first) { first = false; } else { PrintString(", "); } - PrintInt(it.Current()->GetUser()->GetId()); + PrintInt(use.GetUser()->GetId()); } PrintString("]"); } |