diff options
author | Nick Clifton <nickc@redhat.com> | 2011-03-25 18:01:58 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-03-25 18:01:58 +0000 |
commit | 767221a942ad58542d6f5656433dbd07c65ae79f (patch) | |
tree | 2c2ee8ab5d6762fc1a09037160a09ba0a3844925 /binutils | |
parent | 49e7b350197b0b63e4996247872da3bc86a2dc16 (diff) | |
download | gdb-767221a942ad58542d6f5656433dbd07c65ae79f.zip gdb-767221a942ad58542d6f5656433dbd07c65ae79f.tar.gz gdb-767221a942ad58542d6f5656433dbd07c65ae79f.tar.bz2 |
* dwarf.c (decode_location_expression): Use dwarf_vmatoa
function to display DW_OP_addr OP.
(process_debug_info): Use dwarf_vma type for local variables
length and type_offset.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/dwarf.c | 17 |
2 files changed, 14 insertions, 7 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 3565cf1..5af068b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -2,6 +2,10 @@ * dwarf.c (process_debug_info): Use offset_size to determine the bit-size of the computation unit's offset. + (decode_location_expression): Use dwarf_vmatoa function to display + DW_OP_addr OP. + (process_debug_info): Use dwarf_vma type for local variables + length and type_offset. 2011-03-25 Michael Snyder <msnyder@vmware.com> diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 102d164..8846e87 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -674,8 +674,8 @@ decode_location_expression (unsigned char * data, switch (op) { case DW_OP_addr: - printf ("DW_OP_addr: %lx", - (unsigned long) byte_get (data, pointer_size)); + printf ("DW_OP_addr: %s", + dwarf_vmatoa ("x", byte_get (data, pointer_size))); data += pointer_size; break; case DW_OP_deref: @@ -1926,7 +1926,7 @@ process_debug_info (struct dwarf_section *section, && num_debug_info_entries == 0 && ! do_types) { - unsigned long length; + dwarf_vma length; /* First scan the section to get the number of comp units. */ for (section_begin = start, num_units = 0; section_begin < end; @@ -1944,7 +1944,8 @@ process_debug_info (struct dwarf_section *section, } else if (length >= 0xfffffff0 && length < 0xffffffff) { - warn (_("Reserved length value (%lx) found in section %s\n"), length, section->name); + warn (_("Reserved length value (0x%s) found in section %s\n"), + dwarf_vmatoa ("x", length), section->name); return 0; } else @@ -1955,7 +1956,8 @@ process_debug_info (struct dwarf_section *section, relocations to an object file. */ if ((signed long) length <= 0) { - warn (_("Corrupt unit length (%lx) found in section %s\n"), length, section->name); + warn (_("Corrupt unit length (0x%s) found in section %s\n"), + dwarf_vmatoa ("x", length), section->name); return 0; } } @@ -2002,7 +2004,7 @@ process_debug_info (struct dwarf_section *section, int offset_size; int initial_length_size; unsigned char signature[8] = { 0 }; - unsigned long type_offset = 0; + dwarf_vma type_offset = 0; hdrptr = start; @@ -2084,7 +2086,8 @@ process_debug_info (struct dwarf_section *section, for (i = 0; i < 8; i++) printf ("%02x", signature[i]); printf ("\n"); - printf (_(" Type Offset: 0x%lx\n"), type_offset); + printf (_(" Type Offset: 0x%s\n"), + dwarf_vmatoa ("x", type_offset)); } } |