comparison gcc/testsuite/gcc.dg/fma-4.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-options "-O2 -fdump-tree-widening_mul" } */
2
3 float
4 f1 (float a, float b, float c)
5 {
6 return -(a * b) - c;
7 }
8
9 double
10 f2 (double a, double b, double c)
11 {
12 return -(a * b) - c;
13 }
14
15 /* { dg-final { scan-tree-dump-times { = \.FNMS \(} 2 "widening_mul" { target scalar_all_fma } } } */