Commit 9ebbe8cc by Alan Modra Committed by Alan Modra

* gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one.

From-SVN: r103480
parent 99f4c49e
2005-08-25 Alan Modra <amodra@bigpond.net.au> 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/20020103-1.c: Scan for LC[0-9], not LC.
* gcc.dg/altivec-22.c: Rename from.. * gcc.dg/altivec-22.c: Rename from..
* gcc.dg/altivec-nomfcr.c: ..this. * gcc.dg/altivec-nomfcr.c: ..this.
......
...@@ -41,8 +41,8 @@ int main (void) ...@@ -41,8 +41,8 @@ int main (void)
{ {
int i; int i;
float a[N] __attribute__ ((__aligned__(16))); 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 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] __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 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 (); check_vect ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment