comparison src/cpu/ppc/vm/ppc.ad @ 20644:327e7269f90d

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
author coleenp
date Mon, 30 Jun 2014 14:58:52 -0400
parents f6bde7889409
children c5e86c5cd22e
comparison
equal deleted inserted replaced
20642:ec2c6fdd1ce6 20644:327e7269f90d
1328 st->print("stack_overflow_check\n\t"); 1328 st->print("stack_overflow_check\n\t");
1329 } 1329 }
1330 1330
1331 if (!false /* TODO: PPC port C->is_frameless_method()*/) { 1331 if (!false /* TODO: PPC port C->is_frameless_method()*/) {
1332 st->print("save return pc\n\t"); 1332 st->print("save return pc\n\t");
1333 st->print("push frame %d\n\t", -framesize); 1333 st->print("push frame %ld\n\t", -framesize);
1334 } 1334 }
1335 } 1335 }
1336 #endif 1336 #endif
1337 1337
1338 // Macro used instead of the common __ to emulate the pipes of PPC. 1338 // Macro used instead of the common __ to emulate the pipes of PPC.