| Index: src/compiler/graph-visualizer.cc
|
| diff --git a/src/compiler/graph-visualizer.cc b/src/compiler/graph-visualizer.cc
|
| index ab20f8f11faf7d97b236b34da47f49ced59b2fe5..46299944b388509fca46475fbadffba822c4c067 100644
|
| --- a/src/compiler/graph-visualizer.cc
|
| +++ b/src/compiler/graph-visualizer.cc
|
| @@ -497,6 +497,9 @@ void GraphC1Visualizer::PrintSchedule(const char* phase,
|
| if (positions != nullptr) {
|
| SourcePosition position = positions->GetSourcePosition(node);
|
| if (position.IsKnown()) {
|
| + if (position.isInlined()) {
|
| + os_ << "inlining(" << position.InliningId() << "),";
|
| + }
|
| os_ << " pos:" << position.ScriptOffset();
|
| }
|
| }
|
|
|