aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/readelf.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index e447425..d9c1562 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,5 +1,10 @@
2009-09-07 Jan Kratochvil <jan.kratochvil@redhat.com>
+ * readelf.c (is_none_reloc <EM_XTENSA_OLD>, is_none_reloc <EM_XTENSA>):
+ New.
+
+2009-09-07 Jan Kratochvil <jan.kratochvil@redhat.com>
+
* dwarf.c (process_debug_info): Support section padding abbrev codes.
2009-09-07 Tristan Gingold <gingold@adacore.com>
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;
}