PR binutils/2768

* dwarf.c (display_debug_aranges): When the address size is greater than 4
  display addresses and lengths as 16 hex digits, otherwise use 8 hex digits.
This commit is contained in:
Nick Clifton 2006-08-08 09:43:10 +00:00
parent 802f5d9e8e
commit 209c9a1352
2 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2006-08-08 Nick Clifton <nickc@redhat.com>
PR binutils/2768
* dwarf.c (display_debug_aranges): When the address size is
greater than 4 display addresses and lengths as 16 hex digits,
otherwise use 8 hex digits.
2006-08-06 Nick Clifton <nickc@redhat.com>
PR binutils/3001

View File

@ -2577,7 +2577,10 @@ display_debug_aranges (struct dwarf_section *section,
break;
}
printf (_("\n Address Length\n"));
if (address_size > 4)
printf (_("\n Address Length\n"));
else
printf (_("\n Address Length\n"));
ranges = hdrptr;
@ -2598,7 +2601,10 @@ display_debug_aranges (struct dwarf_section *section,
ranges += address_size;
printf (" %8.8lx %lu\n", address, length);
if (address_size > 4)
printf (" 0x%16.16lx 0x%lx\n", address, length);
else
printf (" 0x%8.8lx 0x%lx\n", address, length);
}
}