* config/obj-elf.c (obj_elf_parse_section_letters): Use 'M' instead
authorJakub Jelinek <jakub@redhat.com>
Tue, 11 Sep 2001 16:46:38 +0000 (16:46 +0000)
committerJakub Jelinek <jakub@redhat.com>
Tue, 11 Sep 2001 16:46:38 +0000 (16:46 +0000)
of 'm', 'S' instead of 's'.  Update bad_msg.
* config/tc-ppc.c (ppc_section_letter): Update bad_msg.
* config/tc-i370.c (i370_sectioN_letter): Update bad_msg.

gas/ChangeLog
gas/config/obj-elf.c
gas/config/tc-i370.c
gas/config/tc-ppc.c

index 34bd68fbd002cee25ee579a8f808d4a3f51f119c..2bc26284e20cebb923b93f00af2c5f2dd6a1a7c8 100644 (file)
@@ -1,3 +1,10 @@
+2001-09-11  Jakub Jelinek  <jakub@redhat.com>
+
+       * config/obj-elf.c (obj_elf_parse_section_letters): Use 'M' instead
+       of 'm', 'S' instead of 's'.  Update bad_msg.
+       * config/tc-ppc.c (ppc_section_letter): Update bad_msg.
+       * config/tc-i370.c (i370_sectioN_letter): Update bad_msg.
+
 2001-09-09  Alan Modra  <amodra@bigpond.net.au>
 
        * expr.c (expr): Move code setting "retval" to the end of the loop,
index 4f4e8d4c5da936097d854af55d38138a3522b8a7..efde9c1299d2ca8974050185f294d1703862d582 100644 (file)
@@ -750,15 +750,15 @@ obj_elf_parse_section_letters (str, len)
        case 'x':
          attr |= SHF_EXECINSTR;
          break;
-       case 'm':
+       case 'M':
          attr |= SHF_MERGE;
          break;
-       case 's':
+       case 'S':
          attr |= SHF_STRINGS;
          break;
        default:
          {
-           char *bad_msg = _("Unrecognized .section attribute: want a,m,s,w,x");
+           char *bad_msg = _("Unrecognized .section attribute: want a,w,x,M,S");
 #ifdef md_elf_section_letter
            int md_attr = md_elf_section_letter (*str, &bad_msg);
            if (md_attr >= 0)
index affc9575fdacce62e7e7e9c40cc1185b4aac76c5..75a5792368a20850213c22b21a56c034ce0a98be 100644 (file)
@@ -2462,7 +2462,7 @@ i370_section_letter (letter, ptr_msg)
   if (letter == 'e')
     return SHF_EXCLUDE;
 
-  *ptr_msg = "Bad .section directive: want a,w,x,e in string";
+  *ptr_msg = "Bad .section directive: want a,e,w,x,M,S in string";
   return 0;
 }
 
index a0f18d586db08e4c29c4f11499571f69c39cdbb0..f06bb58c0ef1433d4a01606294cf644ddad73192 100644 (file)
@@ -2440,7 +2440,7 @@ ppc_section_letter (letter, ptr_msg)
   if (letter == 'e')
     return SHF_EXCLUDE;
 
-  *ptr_msg = _("Bad .section directive: want a,w,x,e in string");
+  *ptr_msg = _("Bad .section directive: want a,e,w,x,M,S in string");
   return 0;
 }