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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
process_crash_info
/
main.c
blob
9ed467f8e70f3eccea822af84a60b51455cd5cd3
1
#include <stdlib.h>
2
3
int
main
() {
4
int
*
var
=
malloc
(
sizeof
(
int
));
// break here
5
free
(
var
);
6
free
(
var
);
7
return
0
;
8
}