Sign in
llvm
/
llvm-project
/
e8391d46198aa1390c1bcaff94de42eed34ae26b
/
.
/
lldb
/
test
/
API
/
functionalities
/
breakpoint
/
scripted_bkpt
/
was_hit
/
main.c
blob: b8f977e493513c95952c979529d152bed28c58ea [
file
]
#include
<stdio.h>
int
stop_symbol
()
{
static
int
s_cnt
=
0
;
printf
(
"I am in the stop symbol: %d\n"
,
s_cnt
++);
return
s_cnt
;
}
int
main
()
{
for
(
int
i
=
0
;
i
<
100
;
i
++)
{
stop_symbol
();
}
return
0
;
}