From: Alan Modra Date: Thu, 25 Aug 2005 08:46:32 +0000 (+0000) Subject: * gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9ebbe8cc172d73e4bd1d8d02584cb356164c0a85;p=gcc.git * gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one. From-SVN: r103480 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 842d7a14208..cd84c80703b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-08-25 Alan Modra + + * gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one. + 2005-08-25 Alan Modra * gcc.dg/20020103-1.c: Scan for LC[0-9], not LC. diff --git a/gcc/testsuite/gcc.dg/vect/vect-52.c b/gcc/testsuite/gcc.dg/vect/vect-52.c index a1cb82c92ad..2cca9f7820c 100644 --- a/gcc/testsuite/gcc.dg/vect/vect-52.c +++ b/gcc/testsuite/gcc.dg/vect/vect-52.c @@ -41,8 +41,8 @@ int main (void) { int i; float a[N] __attribute__ ((__aligned__(16))); - float b[N] __attribute__ ((__aligned__(16))) = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60}; - float c[N] __attribute__ ((__aligned__(16))) = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20}; + float b[N+1] __attribute__ ((__aligned__(16))) = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60}; + float c[N+1] __attribute__ ((__aligned__(16))) = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20}; check_vect ();