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
Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
fma-2.c
blob
41d20a4296709d328e416c6feb6ed1f876cee641
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 { = \.FMS \(} 2 "widening_mul" { target scalar_all_fma } } } */