| Index: runtime/vm/assembler_ia32.cc
|
| diff --git a/runtime/vm/assembler_ia32.cc b/runtime/vm/assembler_ia32.cc
|
| index a437c29cf829b1772eaf0c70a2b043b07ba20f12..318601e08cc68c47ab8e6e8d997c17987b1fcf5a 100644
|
| --- a/runtime/vm/assembler_ia32.cc
|
| +++ b/runtime/vm/assembler_ia32.cc
|
| @@ -3,7 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| #include "vm/globals.h" // NOLINT
|
| -#if defined(TARGET_ARCH_IA32)
|
| +#if defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|
| #include "vm/assembler.h"
|
| #include "vm/cpu.h"
|
| @@ -3028,4 +3028,4 @@ const char* Assembler::FpuRegisterName(FpuRegister reg) {
|
|
|
| } // namespace dart
|
|
|
| -#endif // defined TARGET_ARCH_IA32
|
| +#endif // defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|