2003-05-01 H.J. Lu <hjl@gnu.org>

* config/obj-elf.c (obj_elf_type): Accept "notype" and
	"STT_NOTYPE".
This commit is contained in:
H.J. Lu 2003-05-02 03:01:44 +00:00
parent 5c1aa77e69
commit e7b9a8c1d0
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-05-01 H.J. Lu <hjl@gnu.org>
* config/obj-elf.c (obj_elf_type): Accept "notype" and
"STT_NOTYPE".
2003-05-01 H.J. Lu <hjl@gnu.org>
* config/tc-ia64.h (tc_canonicalize_section_name): New.

View File

@ -1648,6 +1648,9 @@ obj_elf_type (ignore)
else if (strcmp (typename, "tls_object") == 0
|| strcmp (typename, "STT_TLS") == 0)
type = BSF_OBJECT | BSF_THREAD_LOCAL;
else if (strcmp (typename, "notype") == 0
|| strcmp (typename, "STT_NOTYPE") == 0)
;
#ifdef md_elf_symbol_type
else if ((type = md_elf_symbol_type (typename, sym, elfsym)) != -1)
;