xref: /llvm-project/bolt/test/Inputs/plt-tailcall.c (revision a13bc9714a6bfb766693aa7900217f6f9be6f25d)
1 #include "stub.h"
2 
foo(char * c)3 int foo(char *c) {
4   printf("");
5   __attribute__((musttail)) return puts(c);
6 }
7 
main()8 int main() { return foo("a"); }
9