aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf.c
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2007-02-05 19:50:12 +0000
committerDave Brolley <brolley@redhat.com>2007-02-05 19:50:12 +0000
commitd93525185ce69a5f63029f41e439e4cc8869e210 (patch)
tree69bccf971c2c0ee67bc42709708f2782ca1e1c47 /bfd/elf.c
parent9e5a05682cf4ef027e1a56c1a896967390644e0d (diff)
downloadgdb-d93525185ce69a5f63029f41e439e4cc8869e210.zip
gdb-d93525185ce69a5f63029f41e439e4cc8869e210.tar.gz
gdb-d93525185ce69a5f63029f41e439e4cc8869e210.tar.bz2
Support for Toshiba MeP and for complex relocations.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r--bfd/elf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/elf.c b/bfd/elf.c
index 7efca9c..460502c 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -6378,6 +6378,10 @@ Unable to find equivalent output section for symbol '%s' from section '%s'"),
type = STT_FUNC;
else if ((flags & BSF_OBJECT) != 0)
type = STT_OBJECT;
+ else if ((flags & BSF_RELC) != 0)
+ type = STT_RELC;
+ else if ((flags & BSF_SRELC) != 0)
+ type = STT_SRELC;
else
type = STT_NOTYPE;