Sign in
◑
Theme
llvm
/
llvm-project
/
4e32fa991ee2c702d64e8db55ece2f01fdd7ffca
/
.
/
lldb
/
test
/
API
/
functionalities
/
tail_call_frames
/
cross_object
/
One.c
blob: 50816530afa52a64db9e674775ccbe6f0a8d24ba [
file
]
#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
();
}