Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr57075.c
blob: dee74a844b11722f608b3b56af4beab958eccbd8 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
extern
int
baz
(
void
)
__attribute__
((
returns_twice
));
int
__attribute__
((
__leaf__
))
foo
(
void
)
{
return
__builtin_printf
(
"$"
);
}
void
bar
()
{
foo
();
baz
();
}