Sign in
◑
Theme
llvm
/
llvm-project
/
1da4f4eb02f723bb1393e71f4e7df07952dc103e
/
.
/
lldb
/
test
/
API
/
functionalities
/
postmortem
/
minidump-new
/
linux-x86_64.cpp
blob: 61d31492940dbcdf9e9ee3faa19ecb97971b755b [
file
]
void
crash
()
{
volatile
int
*
a
=
(
int
*)(
nullptr
);
*
a
=
1
;
}
extern
"C"
void
_start
();
void
InstallBreakpad
();
void
_start
()
{
InstallBreakpad
();
crash
();
}