OSDN Git Service

2003-05-01 H.J. Lu <hjl@gnu.org>
authorH.J. Lu <hjl@lucon.org>
Fri, 2 May 2003 03:01:44 +0000 (03:01 +0000)
committerH.J. Lu <hjl@lucon.org>
Fri, 2 May 2003 03:01:44 +0000 (03:01 +0000)
* config/obj-elf.c (obj_elf_type): Accept "notype" and
"STT_NOTYPE".

gas/ChangeLog
gas/config/obj-elf.c

index c609b0e..fe1ef70 100644 (file)
@@ -1,5 +1,10 @@
 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.
 
        * config/obj-elf.c (obj_elf_section_name): Call
index f61285a..08e131f 100644 (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)
     ;