Sign in
◑
Theme
llvm
/
llvm-project
/
4e32fa991ee2c702d64e8db55ece2f01fdd7ffca
/
.
/
lldb
/
test
/
API
/
functionalities
/
tail_call_frames
/
cross_object
/
Two.c
blob: ecdffd0c72b70330703c4920cce8e788d240eb23 [
file
]
#include
"shared.h"
volatile
int
x
;
__attribute__
((
noinline
))
void
tail_called_in_b_from_b
()
{
++
x
;
// break here
}
void
tail_called_in_b_from_a
()
{
tail_called_in_b_from_b
();
}