From 19bd1fd13fb407d5196993e98950171233c46ece Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 2 May 2003 03:01:44 +0000 Subject: [PATCH] 2003-05-01 H.J. Lu * config/obj-elf.c (obj_elf_type): Accept "notype" and "STT_NOTYPE". --- gas/ChangeLog | 5 +++++ gas/config/obj-elf.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gas/ChangeLog b/gas/ChangeLog index c609b0e4d0..fe1ef70e3c 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2003-05-01 H.J. Lu + * config/obj-elf.c (obj_elf_type): Accept "notype" and + "STT_NOTYPE". + +2003-05-01 H.J. Lu + * config/tc-ia64.h (tc_canonicalize_section_name): New. * config/obj-elf.c (obj_elf_section_name): Call diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index f61285aa41..08e131fe30 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -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) ; -- 2.11.0