| Index: runtime/vm/flow_graph_compiler_x64.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
|
| index b75a1ae17cf285f62abe2545dae0721d51dab88b..574c80134fa5b6477c023ebc1ff6cd97f4128d32 100644
|
| --- a/runtime/vm/flow_graph_compiler_x64.cc
|
| +++ b/runtime/vm/flow_graph_compiler_x64.cc
|
| @@ -3,7 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| #include "vm/globals.h" // Needed here to get TARGET_ARCH_X64.
|
| -#if defined(TARGET_ARCH_X64)
|
| +#if defined(TARGET_ARCH_X64) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|
| #include "vm/flow_graph_compiler.h"
|
|
|
| @@ -1744,4 +1744,4 @@ void ParallelMoveResolver::RestoreFpuScratch(FpuRegister reg) {
|
|
|
| } // namespace dart
|
|
|
| -#endif // defined TARGET_ARCH_X64
|
| +#endif // defined(TARGET_ARCH_X64) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|