Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / recip-8.c
blobf8aecc127c1a3b66fd5dc5f5e69858d69bfc5600
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ffast-math -fdump-tree-optimized" } */
4 double bar (double, double, double, double, double);
6 double
7 foo (double a)
9 return bar (1.0/a, 2.0/a, 4.0/a, 8.0/a, 16.0/a);
12 /* { dg-final { scan-tree-dump-times "/" 1 "optimized" } } */