OSDN Git Service

* c-parse.in: Apply Ulrich's changes from c-parse.y.
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 30 Jan 2000 03:44:04 +0000 (03:44 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 30 Jan 2000 03:44:04 +0000 (03:44 +0000)
* c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31698 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/c-parse.c
gcc/c-parse.in
gcc/objc/objc-parse.c
gcc/objc/objc-parse.y

index 8685404..501e926 100644 (file)
@@ -1,5 +1,11 @@
 2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
 
+       * c-parse.in: Apply Ulrich's changes from c-parse.y.
+       * c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
+       Regenerate.
+
+2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
+
        * cpperror.c (cpp_file_line_for_message): If 'line' is zero,
        just print "<command line>".  If 'filename' is null or an
        empty string, print "<stdin>" for the filename.
index 1385fcd..290a79d 100644 (file)
@@ -1265,7 +1265,7 @@ static const short yycheck[] = {    38,
     51,    52,    53,    54
 };
 /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
-#line 3 "/usr/share/bison.simple"
+#line 3 "/usr/share/misc/bison.simple"
 /* This file comes from bison-1.28.  */
 
 /* Skeleton output parser for bison,
@@ -1479,7 +1479,7 @@ __yy_memcpy (char *to, char *from, unsigned int count)
 #endif
 #endif
 \f
-#line 217 "/usr/share/bison.simple"
+#line 217 "/usr/share/misc/bison.simple"
 
 /* The user can define YYPARSE_PARAM as the name of an argument to be passed
    into yyparse.  The argument should have type void *.
@@ -3826,7 +3826,7 @@ case 407:
     break;}
 }
    /* the action file gets copied in in place of this dollarsign */
-#line 543 "/usr/share/bison.simple"
+#line 543 "/usr/share/misc/bison.simple"
 \f
   yyvsp -= yylen;
   yyssp -= yylen;
index e5f876a..166768d 100644 (file)
@@ -519,7 +519,7 @@ cast_expr:
                  tree type = $2;
                  finish_init ();
 
-                 if (pedantic && ! flag_isoc9x)
+                 if (pedantic && ! flag_isoc99)
                    pedwarn ("ANSI C forbids constructor expressions");
                  if (TYPE_NAME (type) != 0)
                    {
@@ -1403,8 +1403,8 @@ parm_declarator:
 ifc
        | parm_declarator '[' '*' ']'  %prec '.'
                { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
-                 if (! flag_isoc9x)
-                   error ("`[*]' in parameter declaration only allowed in ISO C 9x");
+                 if (! flag_isoc99)
+                   error ("`[*]' in parameter declaration only allowed in ISO C 99");
                }
 end ifc
        | parm_declarator '[' expr ']'  %prec '.'
@@ -1439,8 +1439,8 @@ notype_declarator:
 ifc
        | notype_declarator '[' '*' ']'  %prec '.'
                { $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
-                 if (! flag_isoc9x)
-                   error ("`[*]' in parameter declaration only allowed in ISO C 9x");
+                 if (! flag_isoc99)
+                   error ("`[*]' in parameter declaration only allowed in ISO C 99");
                }
 end ifc
        | notype_declarator '[' expr ']'  %prec '.'
@@ -1523,7 +1523,7 @@ maybecomma:
 maybecomma_warn:
          /* empty */
        | ','
-               { if (pedantic && ! flag_isoc9x)
+               { if (pedantic && ! flag_isoc99)
                    pedwarn ("comma at end of enumerator list"); }
        ;
 
index 18db5a4..7d9ca79 100644 (file)
@@ -2571,7 +2571,7 @@ case 65:
                  tree type = yyvsp[-5].ttype;
                  finish_init ();
 
-                 if (pedantic && ! flag_isoc9x)
+                 if (pedantic && ! flag_isoc99)
                    pedwarn ("ANSI C forbids constructor expressions");
                  if (TYPE_NAME (type) != 0)
                    {
@@ -3542,7 +3542,7 @@ case 267:
     break;}
 case 271:
 #line 1463 "objc-parse.y"
-{ if (pedantic && ! flag_isoc9x)
+{ if (pedantic && ! flag_isoc99)
                    pedwarn ("comma at end of enumerator list"); ;
     break;}
 case 272:
index 79361ef..92b0adc 100644 (file)
@@ -500,7 +500,7 @@ cast_expr:
                  tree type = $2;
                  finish_init ();
 
-                 if (pedantic && ! flag_isoc9x)
+                 if (pedantic && ! flag_isoc99)
                    pedwarn ("ANSI C forbids constructor expressions");
                  if (TYPE_NAME (type) != 0)
                    {
@@ -1460,7 +1460,7 @@ maybecomma:
 maybecomma_warn:
          /* empty */
        | ','
-               { if (pedantic && ! flag_isoc9x)
+               { if (pedantic && ! flag_isoc99)
                    pedwarn ("comma at end of enumerator list"); }
        ;