Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr67929_1.c
blob: ae6cfbf3378d7d3517b3d899c3ee8bbecb03580f [
file
] [
log
] [
blame
]
int
__attribute__
((
noinline
,
noclone
))
foo
(
float
a
)
{
return
a
*
4.9f
;
}
int
main
(
void
)
{
if
(
foo
(
10.0f
)
!=
49
)
__builtin_abort
();
return
0
;
}