repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[LV] Add test showing debug output for loops with uncountable BTCs.
[llvm-project.git]
/
bolt
/
test
/
Inputs
/
plt-tailcall.c
blob
13f6e29c6077477b30d356ee90779c9314450d08
1
#include
"stub.h"
2
3
int
foo
(
char
*
c
) {
4
printf
(
""
);
5
__attribute__
((
musttail
))
return
puts
(
c
);
6
}
7
8
int
main
() {
return
foo
(
"a"
); }