Index: runtime/vm/il_printer.cc |
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc |
index 15fafe4566e80fdff65c745347af01bc5deb0a3d..72479b88ab825a65285b341bae2fd7b1f900ba9d 100644 |
--- a/runtime/vm/il_printer.cc |
+++ b/runtime/vm/il_printer.cc |
@@ -460,7 +460,9 @@ void ParallelMoveInstr::PrintTo(BufferFormatter* f) const { |
f->Print(" %s ", DebugName()); |
for (intptr_t i = 0; i < moves_.length(); i++) { |
if (i != 0) f->Print(", "); |
- f->Print("%s = %s", moves_[i].dest().Name(), moves_[i].src().Name()); |
+ moves_[i].dest().PrintTo(f); |
+ f->Print(" = "); |
+ moves_[i].src().PrintTo(f); |
} |
} |
@@ -712,7 +714,9 @@ void Environment::PrintTo(BufferFormatter* f) const { |
if (i > 0) f->Print(", "); |
values_[i]->PrintTo(f); |
if ((i < locations_.length()) && !locations_[i].IsInvalid()) { |
- f->Print(" [%s]", locations_[i].Name()); |
+ f->Print(" ["); |
+ locations_[i].PrintTo(f); |
+ f->Print("]"); |
} |
} |
f->Print(" }"); |