Index: runtime/vm/cpu.h |
=================================================================== |
--- runtime/vm/cpu.h (revision 31402) |
+++ runtime/vm/cpu.h (working copy) |
@@ -20,6 +20,19 @@ |
static const char* Id(); |
}; |
+ |
} // namespace dart |
+#if defined(TARGET_ARCH_IA32) |
+#include "vm/cpu_ia32.h" |
+#elif defined(TARGET_ARCH_X64) |
+#include "vm/cpu_x64.h" |
+#elif defined(TARGET_ARCH_ARM) |
+#include "vm/cpu_arm.h" |
+#elif defined(TARGET_ARCH_MIPS) |
+#include "vm/cpu_mips.h" |
+#else |
+#error Unknown architecture. |
+#endif |
+ |
#endif // VM_CPU_H_ |