mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-29 06:50:32 +00:00
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:
parent
802f5d9e8e
commit
209c9a1352
@ -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>
|
2006-08-06 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
PR binutils/3001
|
PR binutils/3001
|
||||||
|
@ -2577,7 +2577,10 @@ display_debug_aranges (struct dwarf_section *section,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf (_("\n Address Length\n"));
|
if (address_size > 4)
|
||||||
|
printf (_("\n Address Length\n"));
|
||||||
|
else
|
||||||
|
printf (_("\n Address Length\n"));
|
||||||
|
|
||||||
ranges = hdrptr;
|
ranges = hdrptr;
|
||||||
|
|
||||||
@ -2598,7 +2601,10 @@ display_debug_aranges (struct dwarf_section *section,
|
|||||||
|
|
||||||
ranges += address_size;
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user