Sign in
android
/
toolchain
/
llvm-project
/
refs/heads/android12-mainline-networkstack-release
/
.
/
lldb
/
test
/
API
/
macosx
/
builtin-debugtrap
/
main.cpp
blob: 2cbe2a48b50347d4c7ca66d932c723f37d345332 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
int
global
=
0
;
int
main
()
{
global
=
5
;
// Set a breakpoint here
__builtin_debugtrap
();
global
=
10
;
__builtin_trap
();
global
=
15
;
return
global
;
}