| Index: src/compiler/graph-visualizer.cc
|
| diff --git a/src/compiler/graph-visualizer.cc b/src/compiler/graph-visualizer.cc
|
| index b281cdba3ccc99386268e5f79db2ea6f91fef0b3..b223651c25ca6530d829d66d04ffd8a37f5e2b68 100644
|
| --- a/src/compiler/graph-visualizer.cc
|
| +++ b/src/compiler/graph-visualizer.cc
|
| @@ -750,12 +750,7 @@ void GraphC1Visualizer::PrintLiveRange(LiveRange* range, const char* type) {
|
| } else {
|
| parent_index = range->id();
|
| }
|
| - InstructionOperand* op = range->FirstHint();
|
| - int hint_index = -1;
|
| - if (op != NULL && op->IsUnallocated()) {
|
| - hint_index = UnallocatedOperand::cast(op)->virtual_register();
|
| - }
|
| - os_ << " " << parent_index << " " << hint_index;
|
| + os_ << " " << parent_index;
|
| for (auto interval = range->first_interval(); interval != nullptr;
|
| interval = interval->next()) {
|
| os_ << " [" << interval->start().value() << ", "
|
|
|