From: David Edelsohn Date: Thu, 4 Mar 2004 15:28:59 +0000 (+0000) Subject: rs6000.c (output_function_profiler): Append @plt when compiling PIC. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b6ce0af5eb623ca01fe7a34c19594d3cb675a00;p=platform%2Fupstream%2Fgcc.git rs6000.c (output_function_profiler): Append @plt when compiling PIC. 2004-03-04 David Edelsohn GP * config/rs6000/rs6000.c (output_function_profiler): Append @plt when compiling PIC. Co-Authored-By: GP From-SVN: r78912 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d8973a..d5faea0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-03-04 David Edelsohn + GP + + * config/rs6000/rs6000.c (output_function_profiler): Append @plt + when compiling PIC. + 2004-03-04 Josef Zlomek PR/14362 diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 5648d65..3466590 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -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: