8057780: Fix ppc build after "8050147: StoreLoad barrier interferes with stack usages

Reviewed-by: kvn, shade
This commit is contained in:
Volker Simonis 2014-09-08 16:05:48 +02:00
parent b91254ea6a
commit cf7dd2e6e4
2 changed files with 2 additions and 2 deletions

View File

@ -564,7 +564,7 @@ void os::verify_stack_alignment() {
}
#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;
}

View File

@ -613,7 +613,7 @@ void os::verify_stack_alignment() {
}
#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;
}