rs6000.c (output_function_profiler): Append @plt when compiling PIC.

2004-03-04  David Edelsohn  <edelsohn@gnu.org>
            GP <gp@qnx.com>

        * config/rs6000/rs6000.c (output_function_profiler): Append @plt
        when compiling PIC.

Co-Authored-By: GP <gp@qnx.com>

From-SVN: r78912
This commit is contained in:
David Edelsohn 2004-03-04 15:28:59 +00:00 committed by David Edelsohn
parent 1f6ad0b554
commit 3b6ce0af5e
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-03-04 David Edelsohn <edelsohn@gnu.org>
GP <gp@qnx.com>
* config/rs6000/rs6000.c (output_function_profiler): Append @plt
when compiling PIC.
2004-03-04 Josef Zlomek <zlomekj@suse.cz>
PR/14362

View File

@ -9063,7 +9063,7 @@ print_operand (FILE *file, rtx x, int code)
case 'Q':
if (TARGET_MFCRF)
fputc (',',file);
fputc (',', file);
/* FALLTHRU */
else
return;
@ -13682,7 +13682,8 @@ output_function_profiler (FILE *file, int labelno)
}
/* ABI_V4 saves the static chain reg with ASM_OUTPUT_REG_PUSH. */
fprintf (file, "\tbl %s\n", RS6000_MCOUNT);
fprintf (file, "\tbl %s%s\n",
RS6000_MCOUNT, flag_pic ? "@plt" : "");
break;
case ABI_AIX: