diff options
author | Alan Modra <amodra@gmail.com> | 2011-05-23 06:13:35 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-05-23 06:13:35 +0000 |
commit | 270396f296499f4bff9a3a9d97a179743bcdae73 (patch) | |
tree | 9d44ed2c546ea8da97b2d59c85b01a638c8aafe8 /ld/ldmain.c | |
parent | 6de6a7fe356bbb94c090d48366908f1eb8db6dbb (diff) | |
download | gdb-270396f296499f4bff9a3a9d97a179743bcdae73.zip gdb-270396f296499f4bff9a3a9d97a179743bcdae73.tar.gz gdb-270396f296499f4bff9a3a9d97a179743bcdae73.tar.bz2 |
* ldmisc.c (vfinfo): Add %H.
* ldmain.c (reloc_overflow): Use %H rather than %C.
(reloc_dangerous, unattached_reloc): Likewise.
Diffstat (limited to 'ld/ldmain.c')
-rw-r--r-- | ld/ldmain.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c index 96f3bda..1b4afff 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -1399,7 +1399,7 @@ reloc_overflow (struct bfd_link_info *info ATTRIBUTE_UNUSED, if (overflow_cutoff_limit == -1) return TRUE; - einfo ("%X%C:", abfd, section, address); + einfo ("%X%H:", abfd, section, address); if (overflow_cutoff_limit >= 0 && overflow_cutoff_limit-- == 0) @@ -1451,7 +1451,7 @@ reloc_dangerous (struct bfd_link_info *info ATTRIBUTE_UNUSED, asection *section, bfd_vma address) { - einfo (_("%X%C: dangerous relocation: %s\n"), + einfo (_("%X%H: dangerous relocation: %s\n"), abfd, section, address, message); return TRUE; } @@ -1466,7 +1466,7 @@ unattached_reloc (struct bfd_link_info *info ATTRIBUTE_UNUSED, asection *section, bfd_vma address) { - einfo (_("%X%C: reloc refers to symbol `%T' which is not being output\n"), + einfo (_("%X%H: reloc refers to symbol `%T' which is not being output\n"), abfd, section, address, name); return TRUE; } |