aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog7
-rw-r--r--binutils/dwarf.c10
2 files changed, 15 insertions, 2 deletions
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 <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
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);
}
}