Add malloc predictor (PR middle-end/83023).
[official-gcc.git] / gcc / testsuite / gcc.dg / fma-4.c
blobbff928f1facd08abf523c8022210632c36d9ae49
1 /* { dg-options "-O2 -fdump-tree-widening_mul" } */
3 float
4 f1 (float a, float b, float c)
6 return -(a * b) - c;
9 double
10 f2 (double a, double b, double c)
12 return -(a * b) - c;
15 /* { dg-final { scan-tree-dump-times { = \.FNMS \(} 2 "widening_mul" { target scalar_all_fma } } } */