config/obj-elf.c (obj_elf_section): Allow `@' to introduce an attribute name.
authorKen Raeburn <raeburn@cygnus>
Mon, 12 Jul 1993 15:17:10 +0000 (15:17 +0000)
committerKen Raeburn <raeburn@cygnus>
Mon, 12 Jul 1993 15:17:10 +0000 (15:17 +0000)
Handle `execinstr' attribute.

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

index 679062f4f94719df4ad75f138d2d06291a19ac71..ee66ea023dd11229ae0afa9c26a59c3e43a10c5d 100644 (file)
@@ -1,3 +1,8 @@
+Mon Jul 12 11:15:34 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
+
+       * config/obj-elf.c (obj_elf_section): Allow `@' to introduce an
+       attribute name.  Handle `execinstr' attribute.
+
 Mon Jul 12 07:22:28 1993  Ian Lance Taylor  (ian@cygnus.com)
 
        * config/tc-mips.c (mips_ip): Don't warn on 'i' or 'j' mismatch if
index 45eecfad8aa02b6faed06a7ec4e4a2ccd9cda47f..95ea6df85089a6c619d7efcee7b1b00f545ae585 100644 (file)
@@ -101,7 +101,7 @@ obj_elf_section (xxx)
       char *p, oldp;
 
       input_line_pointer++;
-      if (*input_line_pointer != '#')
+      if (*input_line_pointer != '#' && *input_line_pointer != '@')
        {
          as_bad ("unrecognized syntax in .section command");
          ignore_rest_of_line ();
@@ -115,6 +115,7 @@ obj_elf_section (xxx)
 
       CHECK ("write", SEC_READONLY, 1);
       CHECK ("alloc", SEC_ALLOC, 0);
+      CHECK ("execinstr", SEC_CODE, 1);
 #undef CHECK
 
       p = input_line_pointer;