| Index: runtime/vm/flow_graph_builder.cc
|
| diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
|
| index 414d6cf4b9fda7289a912c5ccc85af665b066a4c..a38c36b8c54d0aae15481858935c9c3b8733cbc8 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()));
|
| }
|
|
|
|
|
|
|