changeset 2995:50aa2916774e

. Pull in the header for VM_Version since it is referenced here. This works by accident on other platforms due to some implicit include ordering which is subtly different for reasons I didn't fully trace through.
author Greg Lewis <glewis@eyesbeyond.com>
date Sun, 04 Mar 2012 16:10:21 -0800
parents 5e97b4c8bd3f
children 6a50e811e7ee
files src/share/vm/memory/threadLocalAllocBuffer.hpp
diffstat 1 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/memory/threadLocalAllocBuffer.hpp	Sun Feb 26 16:04:51 2012 -0800
+++ b/src/share/vm/memory/threadLocalAllocBuffer.hpp	Sun Mar 04 16:10:21 2012 -0800
@@ -28,6 +28,21 @@
 #include "gc_implementation/shared/gcUtil.hpp"
 #include "oops/typeArrayOop.hpp"
 #include "runtime/perfData.hpp"
+#ifdef TARGET_ARCH_x86
+# include "vm_version_x86.hpp"
+#endif
+#ifdef TARGET_ARCH_sparc
+# include "vm_version_sparc.hpp"
+#endif
+#ifdef TARGET_ARCH_zero
+# include "vm_version_zero.hpp"
+#endif
+#ifdef TARGET_ARCH_arm
+# include "vm_version_arm.hpp"
+#endif
+#ifdef TARGET_ARCH_ppc
+# include "vm_version_ppc.hpp"
+#endif
 
 class GlobalTLABStats;