pr17529.c (y): Change size of array to 1 instead of being empty.
authorAndrew Pinski <pinskia@physics.uc.edu>
Fri, 7 Jan 2005 15:52:02 +0000 (15:52 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Fri, 7 Jan 2005 15:52:02 +0000 (07:52 -0800)
2005-01-07  Andrew Pinski  <pinskia@physics.uc.edu>

        * gcc.c-torture/compile/pr17529.c (y): Change size of array to 1
        instead of being empty.

From-SVN: r93053

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr17529.c

index 24d1b1c153ce05279bae78200042948171aea8ed..832d43a25053be9ea57c176c5757b5663d996436 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-07  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * gcc.c-torture/compile/pr17529.c (y): Change size of array to 1
+       instead of being empty.
+
 2005-01-07  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
 
        PR fortran/15553
index 911dbc18a33c2fa195b07744b58eefe135ad7359..63a96a1c363565f4e13b01f0e32f75c4c792047f 100644 (file)
@@ -5,7 +5,7 @@ bar (const int * const x)
   __asm__ __volatile__ (""::"m" (*x)); 
 } 
  
-static const int y[]; 
+static const int y[1]; 
  
 void 
 foo (void)