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