repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[libc][NFC] Remove extra ; in exhaustive_test.h. (#124216)
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
postmortem
/
minidump-new
/
linux-x86_64.cpp
blob
61d31492940dbcdf9e9ee3faa19ecb97971b755b
1
void
crash
() {
2
volatile
int
*
a
= (
int
*)(
nullptr
);
3
*
a
=
1
;
4
}
5
6
extern
"C"
void
_start
();
7
void
InstallBreakpad
();
8
9
void
_start
() {
10
InstallBreakpad
();
11
crash
();
12
}