Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
functionalities
/
tail_call_frames
/
cross_object
/
Two.c
blob: ecdffd0c72b70330703c4920cce8e788d240eb23 [
file
] [
log
] [
blame
]
#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
();
}