< prev index next >

hotspot/src/cpu/ppc/vm/ppc.ad

Print this page
rev 6900 : 8048169: Change 8037816 breaks HS build on PPC64 and CPP-Interpreter platforms
Summary: Fix the matching of format string parameter types to the actual argument types for the PPC64 and CPP-Interpreter files in the same way as 8037816 already did it for all the other files
Reviewed-by: stefank, coleenp, dholmes

*** 1328,1338 **** st->print("stack_overflow_check\n\t"); } if (!false /* TODO: PPC port C->is_frameless_method()*/) { st->print("save return pc\n\t"); ! st->print("push frame %d\n\t", -framesize); } } #endif // Macro used instead of the common __ to emulate the pipes of PPC. --- 1328,1338 ---- st->print("stack_overflow_check\n\t"); } if (!false /* TODO: PPC port C->is_frameless_method()*/) { st->print("save return pc\n\t"); ! st->print("push frame %ld\n\t", -framesize); } } #endif // Macro used instead of the common __ to emulate the pipes of PPC.
< prev index next >