aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/interpreter/templateInterpreter.hpp
diff options
context:
space:
mode:
authorbobv <none@none>2011-02-02 11:35:26 -0500
committerbobv <none@none>2011-02-02 11:35:26 -0500
commitfcae5e930005acaa0202b3c03961cc7d83d86928 (patch)
tree0e5103ccb56211d7414e5588bc269aeefb598171 /src/share/vm/interpreter/templateInterpreter.hpp
parent04747e65790fe8c03e109926f18741246ad7d96c (diff)
7016023: Enable building ARM and PPC from src/closed repository
Reviewed-by: dholmes, bdelsart
Diffstat (limited to 'src/share/vm/interpreter/templateInterpreter.hpp')
-rw-r--r--src/share/vm/interpreter/templateInterpreter.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/share/vm/interpreter/templateInterpreter.hpp b/src/share/vm/interpreter/templateInterpreter.hpp
index 73b02b57f..40717ec56 100644
--- a/src/share/vm/interpreter/templateInterpreter.hpp
+++ b/src/share/vm/interpreter/templateInterpreter.hpp
@@ -192,6 +192,12 @@ class TemplateInterpreter: public AbstractInterpreter {
#ifdef TARGET_ARCH_zero
# include "templateInterpreter_zero.hpp"
#endif
+#ifdef TARGET_ARCH_arm
+# include "templateInterpreter_arm.hpp"
+#endif
+#ifdef TARGET_ARCH_ppc
+# include "templateInterpreter_ppc.hpp"
+#endif
};