OSDN Git Service

* gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one.
authoramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 Aug 2005 08:46:32 +0000 (08:46 +0000)
committeramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 Aug 2005 08:46:32 +0000 (08:46 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103480 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/vect-52.c

index 842d7a1..cd84c80 100644 (file)
@@ -1,5 +1,9 @@
 2005-08-25  Alan Modra  <amodra@bigpond.net.au>
 
+       * gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one.
+
+2005-08-25  Alan Modra  <amodra@bigpond.net.au>
+
        * gcc.dg/20020103-1.c: Scan for LC[0-9], not LC.
        * gcc.dg/altivec-22.c: Rename from..
        * gcc.dg/altivec-nomfcr.c: ..this.
index a1cb82c..2cca9f7 100644 (file)
@@ -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 ();