1#include "shared.h"
2
3__attribute__((noinline))
4static void helper() {
5 tail_called_in_a_from_main();
6}
7
8__attribute__((disable_tail_calls))
9int main() {
10 helper();
11 return 0;
12}
13

source code of lldb/test/API/functionalities/tail_call_frames/cross_object/main.c