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
* gcc.dg/const-elim-1.c: Remove xfail for xtensa-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20001127-1.c
blob
6ac76e29e92818ce460003e527e99d93295628eb
1
/* { dg-do compile { target i?86-*-* } } */
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
}