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.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20080502-1.c
blob
ed9b2085e8e5ed3b89896b199b07e4f2a74b6100
1
/* PR target/36090 */
2
3
extern
void
abort
(
void
);
4
5
long double
__attribute__
((
noinline
))
foo
(
long double
x
)
6
{
7
return
__builtin_signbit
(
x
) ?
3.1415926535897932384626433832795029L
:
0.0
;
8
}
9
10
int
11
main
(
void
)
12
{
13
if
(
foo
(-
1.0L
) !=
3.1415926535897932384626433832795029L
)
14
abort
();
15
return
0
;
16
}