Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr111846.c
blobc4d1da6d22b72544dcbc8ffba66cbbd5adac72d7
1 /* { dg-do compile } */
2 /* { dg-additional-options "-O3 -ffast-math" } */
3 /* { dg-additional-options "-mavx2" { target { x86_64-*-* i?86-*-* } } } */
5 extern __attribute__((__simd__)) float powf(float, float);
6 float gv[0][10];
7 float eq_set_bands_real_adj[0];
8 void eq_set_bands_real() {
9 for (int c = 0; c < 10; c++)
10 for (int i = 0; i < 10; i++)
11 gv[c][i] = powf(0, eq_set_bands_real_adj[i]) - 1;