PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83034.c
blob875a3fe52ca645926ca0e88fe088f7ca5faf322b
1 /* PR debug/83034 */
2 /* { dg-do compile } */
3 /* { dg-options "-funroll-loops -Ofast -g" } */
5 __attribute__((__simd__)) float expf (float);
7 void
8 foo (float *a, int x)
10 for (; x; x++)
11 a[x] = expf (x);