Files
sdk/runtime/vm/assembler_macros.h
T
regis@google.com e27623a4ef Disable x64 disassembler under win32.
Add x64 assembler macros.
Review URL: http://codereview.chromium.org//8760015

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@1955 260f80e4-7a28-3924-810f-c04153c831b5
2011-11-30 23:55:30 +00:00

19 lines
548 B
C

// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// 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.
#ifndef VM_ASSEMBLER_MACROS_H_
#define VM_ASSEMBLER_MACROS_H_
#if defined(TARGET_ARCH_IA32)
#include "vm/assembler_macros_ia32.h"
#elif defined(TARGET_ARCH_X64)
#include "vm/assembler_macros_x64.h"
#elif defined(TARGET_ARCH_ARM)
// Not yet implemented.
#else
#error Unknown architecture.
#endif
#endif // VM_ASSEMBLER_MACROS_H_