| Index: runtime/vm/compiler.cc
|
| diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
|
| index dccb8c12623e62930e8f9fbff95e278be2150228..298fac3e093f4273ef013d63c2e32b3ec83e1b87 100644
|
| --- a/runtime/vm/compiler.cc
|
| +++ b/runtime/vm/compiler.cc
|
| @@ -855,7 +855,8 @@ bool CompileParsedFunctionHelper::Compile(CompilationPipeline* pipeline) {
|
| &inline_id_to_token_pos,
|
| &caller_inline_id,
|
| use_speculative_inlining,
|
| - NULL);
|
| + /*inlining_black_list=*/ NULL,
|
| + /*precompiler=*/ NULL);
|
| inliner.Inline();
|
| // Use lists are maintained and validated by the inliner.
|
| DEBUG_ASSERT(flow_graph->VerifyUseLists());
|
| @@ -1459,7 +1460,8 @@ RawError* Compiler::CompileFunction(Thread* thread,
|
| const Function& function) {
|
| #ifdef DART_PRECOMPILER
|
| if (FLAG_precompiled_mode) {
|
| - return Precompiler::CompileFunction(thread, thread->zone(), function);
|
| + return Precompiler::CompileFunction(
|
| + /* precompiler = */ NULL, thread, thread->zone(), function);
|
| }
|
| #endif
|
| Isolate* isolate = thread->isolate();
|
|
|