repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
20001127-1.c
blob
b62c6f979f71f73f70fdf87694126834b6cc44fa
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
extern inline
float
bar
(
float
x
)
5
{
6
register
long double
value
;
7
asm
volatile
(
"frndint"
:
"=t"
(
value
) :
"0"
(
x
));
8
return
value
;
9
}
10
11
float
a
;
12
13
float
foo
(
float
b
)
14
{
15
return
a
+
bar
(
b
);
16
}