* gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one.
From-SVN: r103480
This commit is contained in:
parent
99f4c49e8a
commit
9ebbe8cc17
@ -1,3 +1,7 @@
|
||||
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.
|
||||
|
@ -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 ();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user