diff options
author | Dave Brolley <brolley@redhat.com> | 2007-02-05 19:50:12 +0000 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2007-02-05 19:50:12 +0000 |
commit | d93525185ce69a5f63029f41e439e4cc8869e210 (patch) | |
tree | 69bccf971c2c0ee67bc42709708f2782ca1e1c47 /bfd/elf.c | |
parent | 9e5a05682cf4ef027e1a56c1a896967390644e0d (diff) | |
download | gdb-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.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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; |