| Index: runtime/vm/compiler.cc
|
| diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
|
| index 22f3b0b22af139212d3478c162a1d253c076d5d1..6775e2b3635f262f515f7c502c5fb52fc5ff804a 100644
|
| --- a/runtime/vm/compiler.cc
|
| +++ b/runtime/vm/compiler.cc
|
| @@ -80,7 +80,7 @@ DECLARE_FLAG(bool, trace_irregexp);
|
| bool Compiler::always_optimize_ = false;
|
| bool Compiler::allow_recompilation_ = true;
|
|
|
| -#ifndef DART_PRECOMPILED
|
| +#ifndef DART_PRECOMPILED_RUNTIME
|
|
|
| // TODO(zerny): Factor out unoptimizing/optimizing pipelines and remove
|
| // separate helpers functions & `optimizing` args.
|
| @@ -1942,7 +1942,7 @@ void BackgroundCompiler::EnsureInit(Thread* thread) {
|
| }
|
|
|
|
|
| -#else // DART_PRECOMPILED
|
| +#else // DART_PRECOMPILED_RUNTIME
|
|
|
|
|
| DEFINE_RUNTIME_ENTRY(CompileFunction, 1) {
|
| @@ -2047,6 +2047,6 @@ void BackgroundCompiler::EnsureInit(Thread* thread) {
|
| UNREACHABLE();
|
| }
|
|
|
| -#endif // DART_PRECOMPILED
|
| +#endif // DART_PRECOMPILED_RUNTIME
|
|
|
| } // namespace dart
|
|
|