| Index: runtime/vm/assembler_x64.cc
|
| diff --git a/runtime/vm/assembler_x64.cc b/runtime/vm/assembler_x64.cc
|
| index 0a3f6dcfa91a6fcb76c0bdeb4b34bac9327fffad..758554b0314d22c45578adbc5cb181bd30313877 100644
|
| --- a/runtime/vm/assembler_x64.cc
|
| +++ b/runtime/vm/assembler_x64.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_X64)
|
| +#if defined(TARGET_ARCH_X64) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|
| #include "vm/assembler.h"
|
| #include "vm/cpu.h"
|
| @@ -3811,4 +3811,4 @@ const char* Assembler::FpuRegisterName(FpuRegister reg) {
|
|
|
| } // namespace dart
|
|
|
| -#endif // defined TARGET_ARCH_X64
|
| +#endif // defined(TARGET_ARCH_X64) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|