Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
ieee
/
pr67218.c
blob: 2a1260a7aa0e8857fadb11adde9311136cfc4f57 [
file
] [
log
] [
blame
]
extern
void
abort
(
void
)
__attribute__
((
noreturn
));
double
__attribute__
((
noinline
,
noclone
))
foo
(
unsigned
int
x
)
{
return
(
double
)
(
float
)
(
x
|
0xffff0000
);
}
int
main
()
{
if
(
foo
(
1
)
!=
0x1
.
fffep31
)
abort
();
return
0
;
}