2003-05-01 H.J. Lu <hjl@gnu.org>
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 2 May 2003 03:01:44 +0000 (03:01 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
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 c609b0e4d00bbc1a97f87adc1e46786aa41007db..fe1ef70e3cc72b5f3b9d12465f593c3b75d04652 100644 (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.
index f61285aa4177e6173bb0b026019ea68bcf1f5c83..08e131fe30d86a0f0e309bffa4518d9c06b6fb9b 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)
     ;
This page took 0.028886 seconds and 4 git commands to generate.