summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/tail_call_frames/cross_object/One.c
blob: 50816530afa52a64db9e674775ccbe6f0a8d24ba (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "shared.h"

__attribute__((noinline))
static void helper_in_a() {
  tail_called_in_b_from_a();
}

__attribute__((disable_tail_calls))
void tail_called_in_a_from_main() {
  helper_in_a();
}