repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
i386
/
20001127-1.c
blob
f63d1149322bd13e2f8277d0f09a3e9c39d9ff6a
1
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
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
}