| Index: runtime/vm/il_printer.cc
|
| diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
|
| index c691b857ff5f7d491484e7ee71093fb5a60154c9..1387730ecad7d399fc0151d4e9412008e8383064 100644
|
| --- a/runtime/vm/il_printer.cc
|
| +++ b/runtime/vm/il_printer.cc
|
| @@ -237,8 +237,8 @@ void FlowGraphPrinter::PrintICData(const ICData& ic_data) {
|
| static void PrintUse(BufferFormatter* f, const Definition& definition) {
|
| if (definition.HasSSATemp()) {
|
| if (definition.HasPairRepresentation()) {
|
| - f->Print("v%" Pd ", v%" Pd "", definition.ssa_temp_index(),
|
| - definition.ssa_temp_index() + 1);
|
| + f->Print("(v%" Pd ", v%" Pd ")", definition.ssa_temp_index(),
|
| + definition.ssa_temp_index() + 1);
|
| } else {
|
| f->Print("v%" Pd "", definition.ssa_temp_index());
|
| }
|
|
|