Sign in
cos
/
mirrors
/
github.com
/
llvm
/
llvm-project
/
refs/heads/main
/
.
/
bolt
/
test
/
Inputs
/
plt-tailcall.c
blob: 13f6e29c6077477b30d356ee90779c9314450d08 [
file
] [
log
] [
blame
] [
edit
]
#include
"stub.h"
int
foo
(
char
*
c
)
{
printf
(
""
);
__attribute__
((
musttail
))
return
puts
(
c
);
}
int
main
()
{
return
foo
(
"a"
);
}