Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
fp-int-convert-2.c
blob: 4c00e8fa71fbaa3dd83205381a599f6271f8b889 [
file
] [
log
] [
blame
]
/* { dg-do run } */
/* { dg-require-effective-target int128 } */
extern
void
abort
(
void
);
float
__attribute__
((
noinline
))
f
(
__uint128_t
x
)
{
return
x
+
1
;
}
int
main
(
void
)
{
if
(
f
(
0xffffffffu
)
==
0
)
abort
();
return
0
;
}