| Index: runtime/vm/flow_graph_compiler.cc
|
| diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
|
| index ddd5dec6d3c26afd2a905dac2d22ba700433aeba..5197713860f2fa4068f7a2b346429a037ffa9998 100644
|
| --- a/runtime/vm/flow_graph_compiler.cc
|
| +++ b/runtime/vm/flow_graph_compiler.cc
|
| @@ -444,7 +444,7 @@ void FlowGraphCompiler::EmitInstructionPrologue(Instruction* instr) {
|
|
|
|
|
| void FlowGraphCompiler::EmitSourceLine(Instruction* instr) {
|
| - if ((instr->token_pos() == Scanner::kNoSourcePos) || (instr->env() == NULL)) {
|
| + if ((instr->token_pos() < 0) || (instr->env() == NULL)) {
|
| return;
|
| }
|
| const Script& script =
|
|
|