diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-10-09 05:52:29 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-10-09 05:52:29 +0000 |
commit | 598aaa7684fc8ffdbd9a22bef5e321e09ef8a54d (patch) | |
tree | 58a1487ec5e2dda9322cc736ca0f510a4d7db1e6 /binutils/dwarf.h | |
parent | 6ed3211e19f2ca09ba2c39b1a94e58612e492ffe (diff) | |
download | gdb-598aaa7684fc8ffdbd9a22bef5e321e09ef8a54d.zip gdb-598aaa7684fc8ffdbd9a22bef5e321e09ef8a54d.tar.gz gdb-598aaa7684fc8ffdbd9a22bef5e321e09ef8a54d.tar.bz2 |
Use BYTE_GET_SIGNED on r_addend.
2010-10-08 H.J. Lu <hongjiu.lu@intel.com>
* dwarf.c (byte_get_signed): Make it extern.
* dwarf.h (byte_get_signed): New.
* readelf.c (BYTE_GET_SIGNED): New.
(slurp_rela_relocs): Use BYTE_GET_SIGNED on r_addend.
(dump_relocations): Properly dump r_addend.
Diffstat (limited to 'binutils/dwarf.h')
-rw-r--r-- | binutils/dwarf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binutils/dwarf.h b/binutils/dwarf.h index df90ae0..1c47c5e 100644 --- a/binutils/dwarf.h +++ b/binutils/dwarf.h @@ -101,6 +101,7 @@ typedef struct debug_info; extern dwarf_vma (*byte_get) (unsigned char *, int); +extern dwarf_vma byte_get_signed (unsigned char *, int); extern dwarf_vma byte_get_little_endian (unsigned char *, int); extern dwarf_vma byte_get_big_endian (unsigned char *, int); |