8057780: Fix ppc build after "8050147: StoreLoad barrier interferes with stack usages
Reviewed-by: kvn, shade
--- a/hotspot/src/os_cpu/aix_ppc/vm/os_aix_ppc.cpp Mon Sep 08 11:45:48 2014 -0700
+++ b/hotspot/src/os_cpu/aix_ppc/vm/os_aix_ppc.cpp Mon Sep 08 16:05:48 2014 +0200
@@ -564,7 +564,7 @@
}
#endif
-void os::extra_bang_size_in_bytes() {
+int os::extra_bang_size_in_bytes() {
// PPC does not require the additional stack bang.
return 0;
}
--- a/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp Mon Sep 08 11:45:48 2014 -0700
+++ b/hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp Mon Sep 08 16:05:48 2014 +0200
@@ -613,7 +613,7 @@
}
#endif
-int os:extra_bang_size_in_bytes() {
+int os::extra_bang_size_in_bytes() {
// PPC does not require the additional stack bang.
return 0;
}