]> gcc.gnu.org Git - gcc.git/commitdiff
c-parse.in (cast_expr): Move change from March 21 into c-parse.in since it is used...
authorJeffrey A Law <law@cygnus.com>
Fri, 31 Mar 2000 01:05:27 +0000 (01:05 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 31 Mar 2000 01:05:27 +0000 (18:05 -0700)
        * c-parse.in (cast_expr): Move change from March 21 into c-parse.in
        since it is used to generate c-parse.y.
        * objc-parse.c, objc-parse.y: Regenerated.

From-SVN: r32840

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

index daea4d00bea332e9e6b2fb93d34f7cf6d04217e2..d83f200a0aa699ff62ba156d797308dffaa295d7 100644 (file)
@@ -13,6 +13,10 @@ Thu Mar 30 06:32:51 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
 Thu Mar 30 13:30:40 2000  Jeffrey A Law  (law@cygnus.com)
 
+       * c-parse.in (cast_expr): Move change from March 21 into c-parse.in
+       since it is used to generate c-parse.y.
+       * objc-parse.c, objc-parse.y: Regenerated.
+
        * function.c (expand_function_end): Pass alignment argument to
        emit_block_move in bits, not bytes.
 
index 6a079b4946fd7514d8e16021fa19b29694bdcab3..3db3089293f95b5964518ff882e1f0685ffc7ab1 100644 (file)
@@ -533,7 +533,7 @@ cast_expr:
                  else
                    name = "";
                  $$ = result;
-                 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
+                 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
                    {
                      int failure = complete_array_type (type, $$, 1);
                      if (failure)
index 6d6679f7abd4a83f03d7fd4fe8903221d2d19041..d83adf26b305c5172a553d81fd2f7bba1472d585 100644 (file)
@@ -1754,7 +1754,7 @@ static const short yycheck[] = {    56,
     50,    51,    52,    53,    54,    55,    56,    57
 };
 /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
-#line 3 "/usr/share/bison.simple"
+#line 3 "/usr/lib/bison.simple"
 /* This file comes from bison-1.27.  */
 
 /* Skeleton output parser for bison,
@@ -1968,7 +1968,7 @@ __yy_memcpy (char *to, char *from, unsigned int count)
 #endif
 #endif
 \f
-#line 216 "/usr/share/bison.simple"
+#line 216 "/usr/lib/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 *.
@@ -2589,7 +2589,7 @@ case 65:
                  else
                    name = "";
                  yyval.ttype = result;
-                 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
+                 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
                    {
                      int failure = complete_array_type (type, yyval.ttype, 1);
                      if (failure)
@@ -5091,7 +5091,7 @@ case 570:
     break;}
 }
    /* the action file gets copied in in place of this dollarsign */
-#line 542 "/usr/share/bison.simple"
+#line 542 "/usr/lib/bison.simple"
 \f
   yyvsp -= yylen;
   yyssp -= yylen;
index 3413a2cd6bcdba5a6b778d13ea17bf3956e40e88..29359e96fab5f34837fd478adad9334a9ac39451 100644 (file)
@@ -514,7 +514,7 @@ cast_expr:
                  else
                    name = "";
                  $$ = result;
-                 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
+                 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
                    {
                      int failure = complete_array_type (type, $$, 1);
                      if (failure)
This page took 0.110379 seconds and 5 git commands to generate.