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
IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vmx
/
ira2c.c
blob
bce5469ceaa886e37bc096d2d02912bf0c7a7b23
1
/* { dg-do compile } */
2
3
double
__fabs
(
double
a
) {
return
a
; }
4
double
__fmadd
(
double
a
,
double
b
,
double
c
) {
return
a
*
b
+
c
; }
5
6
double
7
test
(
double
f32a
,
double
f32b
,
double
f32c
)
8
{
9
f32c
=
__fabs
(
f32a
);
10
return
__fmadd
(
f32a
,
f32b
,
f32c
);
11
}