src/os_cpu/aix_ppc/vm/os_aix_ppc.cpp

Print this page

        

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