8057780: Fix ppc build after "8050147: StoreLoad barrier interferes with stack usages
authorsimonis
Mon, 08 Sep 2014 16:05:48 +0200
changeset 26582 b17d77706e6f
parent 26581 cb21ee34883d
child 26583 2ef7b85da46b
8057780: Fix ppc build after "8050147: StoreLoad barrier interferes with stack usages Reviewed-by: kvn, shade
hotspot/src/os_cpu/aix_ppc/vm/os_aix_ppc.cpp
hotspot/src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp
--- 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;
 }