aboutsummaryrefslogtreecommitdiff
path: root/binutils/readelf.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2009-09-07 18:08:52 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2009-09-07 18:08:52 +0000
commit58332ddae8627321b36b1210aaa21d2ca5a4c2d0 (patch)
treeae186e16943e4610754795058c3f72b650860c33 /binutils/readelf.c
parenteb7cc02115c176068ad577e9787cff620cf32d4f (diff)
downloadfsf-binutils-gdb-58332ddae8627321b36b1210aaa21d2ca5a4c2d0.zip
fsf-binutils-gdb-58332ddae8627321b36b1210aaa21d2ca5a4c2d0.tar.gz
fsf-binutils-gdb-58332ddae8627321b36b1210aaa21d2ca5a4c2d0.tar.bz2
binutils/
* readelf.c (is_none_reloc <EM_XTENSA_OLD>, is_none_reloc <EM_XTENSA>): New.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r--binutils/readelf.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c
index a8c1691..09a4b1c 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -8163,6 +8163,12 @@ is_none_reloc (unsigned int reloc_type)
case EM_MN10300: /* R_MN10300_NONE. */
case EM_M32R: /* R_M32R_NONE. */
return reloc_type == 0;
+ case EM_XTENSA_OLD:
+ case EM_XTENSA:
+ return reloc_type == 0 /* R_XTENSA_NONE. */
+ || reloc_type == 17 /* R_XTENSA_DIFF8. */
+ || reloc_type == 18 /* R_XTENSA_DIFF16. */
+ || reloc_type == 19; /* R_XTENSA_DIFF32. */
}
return FALSE;
}