aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/readelf.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index cce3880..7bd4fcb 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2007-12-04 Alan Modra <amodra@bigpond.net.au>
+
+ * readelf.c (is_32bit_abs_reloc, is_32bit_pcrel_reloc): Add SPU.
+
2007-11-29 Mark Shinwell <shinwell@codesourcery.com>
* readelf.c (get_machine_flags): Handle Loongson-2E and -2F
diff --git a/binutils/readelf.c b/binutils/readelf.c
index e827e6c..d3c6605 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -8044,6 +8044,8 @@ is_32bit_abs_reloc (unsigned int reloc_type)
case EM_SPARC:
return reloc_type == 3 /* R_SPARC_32. */
|| reloc_type == 23; /* R_SPARC_UA32. */
+ case EM_SPU:
+ return reloc_type == 6; /* R_SPU_ADDR32 */
case EM_CYGNUS_V850:
case EM_V850:
return reloc_type == 6; /* R_V850_ABS32. */
@@ -8096,6 +8098,8 @@ is_32bit_pcrel_reloc (unsigned int reloc_type)
case EM_SPARCV9:
case EM_SPARC:
return reloc_type == 6; /* R_SPARC_DISP32. */
+ case EM_SPU:
+ return reloc_type == 13; /* R_SPU_REL32. */
case EM_X86_64:
return reloc_type == 2; /* R_X86_64_PC32. */
default: