| Index: runtime/vm/flow_graph_compiler_arm64.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_arm64.cc b/runtime/vm/flow_graph_compiler_arm64.cc
|
| index 2e814ffb4e624b92c5a1ac1a32ff0c961494c4db..5d7f917c2d09f8bcfdc8cafb40fa93ada98c9ce0 100644
|
| --- a/runtime/vm/flow_graph_compiler_arm64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_arm64.cc
|
| @@ -26,7 +26,6 @@ namespace dart {
|
| DEFINE_FLAG(bool, trap_on_deoptimization, false, "Trap on deoptimization.");
|
| DECLARE_FLAG(bool, enable_simd_inline);
|
| DECLARE_FLAG(bool, use_megamorphic_stub);
|
| -DECLARE_FLAG(bool, precompilation);
|
|
|
|
|
| void MegamorphicSlowPath::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| @@ -1127,7 +1126,7 @@ void FlowGraphCompiler::CompileGraph() {
|
| ASSERT(assembler()->constant_pool_allowed());
|
| GenerateDeferredCode();
|
|
|
| - if (is_optimizing() && !FLAG_precompilation) {
|
| + if (is_optimizing() && !FLAG_precompiled_mode) {
|
| // Leave enough space for patching in case of lazy deoptimization from
|
| // deferred code.
|
| for (intptr_t i = 0;
|
| @@ -1308,7 +1307,7 @@ void FlowGraphCompiler::EmitMegamorphicInstanceCall(
|
|
|
| RecordSafepoint(locs);
|
| const intptr_t deopt_id_after = Thread::ToDeoptAfter(deopt_id);
|
| - if (FLAG_precompilation) {
|
| + if (FLAG_precompiled_mode) {
|
| // Megamorphic calls may occur in slow path stubs.
|
| // If valid use try_index argument.
|
| if (try_index == CatchClauseNode::kInvalidTryIndex) {
|
|
|