| Index: runtime/vm/disassembler_ia32.cc
|
| diff --git a/runtime/vm/disassembler_ia32.cc b/runtime/vm/disassembler_ia32.cc
|
| index 35414588d6fbc79a1d1bd504fca12c265373ffa7..3716d128eff69177a34fb2689d55f923e3ddd7fc 100644
|
| --- a/runtime/vm/disassembler_ia32.cc
|
| +++ b/runtime/vm/disassembler_ia32.cc
|
| @@ -2,10 +2,11 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // 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) && !defined(DART_PRECOMPILED_RUNTIME)
|
| +
|
| #include "vm/disassembler.h"
|
|
|
| -#include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32.
|
| -#if defined(TARGET_ARCH_IA32)
|
| #include "platform/utils.h"
|
| #include "vm/allocation.h"
|
| #include "vm/heap.h"
|
| @@ -1904,4 +1905,4 @@ void Disassembler::DecodeInstruction(char* hex_buffer,
|
|
|
| } // namespace dart
|
|
|
| -#endif // defined TARGET_ARCH_IA32
|
| +#endif // defined(TARGET_ARCH_IA32) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
|