From: Gary Thomas Date: Sat, 8 Aug 1998 18:21:15 +0000 (-0600) Subject: 0 X-Git-Tag: prereleases/egcs-1.1-prerelease~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73e40266c170f7e53fe1b3f37a923ab3eceb4a06;p=thirdparty%2Fgcc.git 0 * rs6000.c (rs6000_allocate_stack_space) Fix typo which caused bad assembly code to be generated. From-SVN: r21636 --- diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 987c3adeabdb..b23923bc91b4 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -3787,7 +3787,7 @@ rs6000_allocate_stack_space (file, size, copy_r12) { fprintf (file, "\tmr %s,%s\n", reg_names[12], reg_names[1]); if (size < 32767) - fprintf (file, "\t{cal|la} %s,%d(%s)\n", + asm_fprintf (file, "\t{cal|la} %s,%d(%s)\n", reg_names[1], neg_size, reg_names[1]); else {