* config/obj-elf.c (obj_elf_type): Accept "notype" and
"STT_NOTYPE".
+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.
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)
;