Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / fma-3.c
blob699aa2c95305a6a509566a81c49dbff6fe014a14
1 /* { dg-options "-O2 -fdump-tree-widening_mul" } */
3 float
4 f1 (float a, float b, float c)
6 return c - a * b;
9 double
10 f2 (double a, double b, double c)
12 return c - a * b;
15 /* { dg-final { scan-tree-dump-times { = \.FNMA \(} 2 "widening_mul" { target scalar_all_fma } } } */