diff options
author | Bob Wilson <bob.wilson@acm.org> | 2007-12-08 01:04:59 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2007-12-08 01:04:59 +0000 |
commit | 2fcb970637fc082a6d12666ba9a15da15a16dd9d (patch) | |
tree | 8a1ce63e65c09a32c0c04ae6260dda8bc35810c2 /binutils | |
parent | b2e4cf1e96809f9087f5d899069683f7c11d06e0 (diff) | |
download | gdb-2fcb970637fc082a6d12666ba9a15da15a16dd9d.zip gdb-2fcb970637fc082a6d12666ba9a15da15a16dd9d.tar.gz gdb-2fcb970637fc082a6d12666ba9a15da15a16dd9d.tar.bz2 |
* readelf.c (is_32bit_pcrel_reloc): Add Xtensa.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 7bd4fcb..530d802 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2007-12-07 Bob Wilson <bob.wilson@acm.org> + + * readelf.c (is_32bit_pcrel_reloc): Add Xtensa. + 2007-12-04 Alan Modra <amodra@bigpond.net.au> * readelf.c (is_32bit_abs_reloc, is_32bit_pcrel_reloc): Add SPU. diff --git a/binutils/readelf.c b/binutils/readelf.c index d3c6605..84fb290 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -8102,6 +8102,9 @@ is_32bit_pcrel_reloc (unsigned int reloc_type) return reloc_type == 13; /* R_SPU_REL32. */ case EM_X86_64: return reloc_type == 2; /* R_X86_64_PC32. */ + case EM_XTENSA_OLD: + case EM_XTENSA: + return reloc_type == 14; /* R_XTENSA_32_PCREL. */ default: /* Do not abort or issue an error message here. Not all targets use pc-relative 32-bit relocs in their DWARF debug information and we |