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
[mlir][acc] Introduce MappableType interface (#122146)
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
postmortem
/
minidump-new
/
linux-x86_64_not_crashed.cpp
blob
070c565e72bd748c43d45e45e80f9753e3c9cb2b
1
void
InstallBreakpad
();
2
void
WriteMinidump
();
3
4
int
global
=
42
;
5
6
int
bar
(
int
x
) {
7
WriteMinidump
();
8
int
y
=
4
*
x
+
global
;
9
return
y
;
10
}
11
12
int
foo
(
int
x
) {
13
int
y
=
2
*
bar
(
3
*
x
);
14
return
y
;
15
}
16
17
extern
"C"
void
_start
();
18
19
void
_start
() {
20
InstallBreakpad
();
21
foo
(
1
);
22
}