src/os_cpu/linux_ppc/vm/os_linux_ppc.cpp

Print this page

        

*** 610,614 **** --- 610,619 ---- #ifndef PRODUCT void os::verify_stack_alignment() { assert(((intptr_t)os::current_stack_pointer() & (StackAlignmentInBytes-1)) == 0, "incorrect stack alignment"); } #endif + + int os:extra_bang_size_in_bytes() { + // PPC does not require the additional stack bang. + return 0; + }