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