| Index: runtime/vm/flow_graph_builder.cc
|
| diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
|
| index c0ffe2e2398189d8ef0f6b9db7b79630f3378b4c..8d0d10bf5b2c11a42587047e040fc013d940f3db 100644
|
| --- a/runtime/vm/flow_graph_builder.cc
|
| +++ b/runtime/vm/flow_graph_builder.cc
|
| @@ -1218,7 +1218,7 @@ void EffectGraphVisitor::VisitReturnNode(ReturnNode* node) {
|
|
|
| // <Expression> ::= Literal { literal: Instance }
|
| void EffectGraphVisitor::VisitLiteralNode(LiteralNode* node) {
|
| - ReturnDefinition(new(Z) ConstantInstr(node->literal()));
|
| + ReturnDefinition(new(Z) ConstantInstr(node->literal(), node->token_pos()));
|
| }
|
|
|
|
|
|
|