repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
fma-1.c
blob
8c33cb2d64c9b5ead8432999b7a17fb9dc8031e3
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 { = \.FMA \(} 2 "widening_mul" { target scalar_all_fma } } } */