pr17529.c (y): Change size of array to 1 instead of being empty.

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
This commit is contained in:
Andrew Pinski 2005-01-07 15:52:02 +00:00 committed by Andrew Pinski
parent 4937d02db2
commit 6992cbd163
2 changed files with 6 additions and 1 deletions

View 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

View 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)