hotspot/src/share/vm/asm/assembler.hpp
changeset 8107 78e5bd944384
parent 7433 b418028612ad
child 8921 14bfe81f2a9d
--- a/hotspot/src/share/vm/asm/assembler.hpp	Thu Jan 27 16:11:27 2011 -0800
+++ b/hotspot/src/share/vm/asm/assembler.hpp	Wed Feb 02 11:35:26 2011 -0500
@@ -43,6 +43,14 @@
 # include "register_zero.hpp"
 # include "vm_version_zero.hpp"
 #endif
+#ifdef TARGET_ARCH_arm
+# include "register_arm.hpp"
+# include "vm_version_arm.hpp"
+#endif
+#ifdef TARGET_ARCH_ppc
+# include "register_ppc.hpp"
+# include "vm_version_ppc.hpp"
+#endif
 
 // This file contains platform-independent assembler declarations.
 
@@ -395,6 +403,12 @@
 #ifdef TARGET_ARCH_zero
 # include "assembler_zero.hpp"
 #endif
+#ifdef TARGET_ARCH_arm
+# include "assembler_arm.hpp"
+#endif
+#ifdef TARGET_ARCH_ppc
+# include "assembler_ppc.hpp"
+#endif
 
 
 #endif // SHARE_VM_ASM_ASSEMBLER_HPP