| Index: src/compiler/graph-visualizer.cc
|
| diff --git a/src/compiler/graph-visualizer.cc b/src/compiler/graph-visualizer.cc
|
| index 559da32ef4de97c702121d6523c4275186a5dd12..19f24cfdb2fc3f3da9fe11d38fd97cc1766b8c91 100644
|
| --- a/src/compiler/graph-visualizer.cc
|
| +++ b/src/compiler/graph-visualizer.cc
|
| @@ -680,7 +680,9 @@ void GraphC1Visualizer::PrintSchedule(const char* phase,
|
| for (int j = instruction_block->first_instruction_index();
|
| j <= instruction_block->last_instruction_index(); j++) {
|
| PrintIndent();
|
| - os_ << j << " " << *instructions->InstructionAt(j) << " <|@\n";
|
| + PrintableInstruction printable = {RegisterConfiguration::ArchDefault(),
|
| + instructions->InstructionAt(j)};
|
| + os_ << j << " " << printable << " <|@\n";
|
| }
|
| }
|
| }
|
|
|