forked from Imagelibrary/binutils-gdb
* ldmisc.c (vfinfo): Add %H.
* ldmain.c (reloc_overflow): Use %H rather than %C. (reloc_dangerous, unattached_reloc): Likewise.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user