From: Nick Clifton Date: Tue, 8 Aug 2006 09:43:10 +0000 (+0000) Subject: PR binutils/2768 X-Git-Tag: gdb_6_6-2006-11-15-branchpoint~697 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=209c9a1352c5a1d1b27b7d61883055fa60de6457;p=external%2Fbinutils.git 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. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0db8579..101da4c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,10 @@ +2006-08-08 Nick Clifton + + 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 PR binutils/3001 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 0db2a8b..8a98aecb 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -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); } }