| 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 e6f13b0e22beef1b4501fbea4c112c62f9e77033..014b4f9ec7227c9076281ddf832e1ccaccd31888 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"
|
|
|
| @@ -1765,4 +1765,4 @@ void ParallelMoveResolver::RestoreFpuScratch(FpuRegister reg) {
|
|
|
| } // namespace dart
|
|
|
| -#endif // defined TARGET_ARCH_IA32
|
| +#endif // defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|