Add compile command to each testcase
[gcc-vect-testsuite.git] / vect-recip.c
blob4f130b05c0ec0e96323c3a017e7e7c92de8f9c8e
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_float } */
4 void f(float *__restrict__ qa, float *__restrict__ qb,
5 float *__restrict__ qc, float *__restrict__ rtrms)
7 int i;
8 static float qam[600];
9 static float qbm[600];
10 static float qcm[600];
11 for(i=0;i<600;i++)
13 float a = rtrms[i];
14 qam[i] = qa[i]/a;
15 qbm[i] = qb[i]/a;
16 qcm[i] = qc[i]/a;
20 /* { dg-final { cleanup-tree-dump "vect" } } */