Skip to content

Commit

Permalink
2006-01-25 Andrew Pinski <pinskia@physics.uc.edu>
Browse files Browse the repository at this point in the history
        PR target/25758
        * config/i386/i386.c (output_pic_addr_const) <case SYMBOL_REF>:
        Use output_addr_const instead of assemble_name.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110219 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
pinskia committed Jan 25, 2006
1 parent e26d134 commit 1dd35f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions gcc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2006-01-25 Andrew Pinski <pinskia@physics.uc.edu>

PR target/25758
* config/i386/i386.c (output_pic_addr_const) <case SYMBOL_REF>:
Use output_addr_const instead of assemble_name.

2006-01-25 Paolo Bonzini <bonzini@gnu.org>

* Makefile.in (sched-vis.o): Update dependencies.
Expand Down
2 changes: 1 addition & 1 deletion gcc/config/i386/i386.c
Original file line number Diff line number Diff line change
Expand Up @@ -6902,7 +6902,7 @@ output_pic_addr_const (FILE *file, rtx x, int code)
break;

case SYMBOL_REF:
assemble_name (file, XSTR (x, 0));
output_addr_const (file, x);
if (!TARGET_MACHO && code == 'P' && ! SYMBOL_REF_LOCAL_P (x))
fputs ("@PLT", file);
break;
Expand Down

0 comments on commit 1dd35f2

Please sign in to comment.