diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2005-01-07 15:52:02 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2005-01-07 07:52:02 -0800 |
commit | 6992cbd163459446e6a2063ccb3d5f9fb0306622 (patch) | |
tree | d2ce00056dc6aa094d9ea09b3f7493a91d2fc2fa /gcc | |
parent | 4937d02db27fb2d43e4000bd215d6c16c8a940b5 (diff) | |
download | gcc-6992cbd163459446e6a2063ccb3d5f9fb0306622.zip gcc-6992cbd163459446e6a2063ccb3d5f9fb0306622.tar.gz gcc-6992cbd163459446e6a2063ccb3d5f9fb0306622.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/pr17529.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 24d1b1c..832d43a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/gcc.c-torture/compile/pr17529.c b/gcc/testsuite/gcc.c-torture/compile/pr17529.c index 911dbc1..63a96a1 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr17529.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr17529.c @@ -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) |