| Index: runtime/vm/flow_graph_compiler_ia32.cc
|
| diff --git a/runtime/vm/flow_graph_compiler_ia32.cc b/runtime/vm/flow_graph_compiler_ia32.cc
|
| index 056d9b2d72370f2ffcaafddfa3012c131e143bfb..dd39d71311e1e9d53ce36c17e38b21b9d4ce0e57 100644
|
| --- a/runtime/vm/flow_graph_compiler_ia32.cc
|
| +++ b/runtime/vm/flow_graph_compiler_ia32.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_IA32.
|
| -#if defined(TARGET_ARCH_IA32)
|
| +#if defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|
| #include "vm/flow_graph_compiler.h"
|
|
|
| @@ -1707,4 +1707,4 @@ void ParallelMoveResolver::RestoreFpuScratch(FpuRegister reg) {
|
|
|
| } // namespace dart
|
|
|
| -#endif // defined TARGET_ARCH_IA32
|
| +#endif // defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|