| Index: runtime/vm/compiler.cc
|
| diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
|
| index f5a702a4b622834bf5e2607a3194e15aef3ed489..326d0608b640ca9749d03e93f3b1838ea9be2c73 100644
|
| --- a/runtime/vm/compiler.cc
|
| +++ b/runtime/vm/compiler.cc
|
| @@ -168,8 +168,9 @@ FlowGraph* IrregexpCompilationPipeline::BuildFlowGraph(
|
| const ZoneGrowableArray<const ICData*>& ic_data_array,
|
| intptr_t osr_id) {
|
| // Compile to the dart IR.
|
| - RegExpEngine::CompilationResult result = RegExpEngine::CompileIR(
|
| - parsed_function->regexp_compile_data(), parsed_function, ic_data_array);
|
| + RegExpEngine::CompilationResult result =
|
| + RegExpEngine::CompileIR(parsed_function->regexp_compile_data(),
|
| + parsed_function, ic_data_array, osr_id);
|
| backtrack_goto_ = result.backtrack_goto;
|
|
|
| // Allocate variables now that we know the number of locals.
|
|
|