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
/
inferior-changed
/
main.c
blob
9ce587e4145374078dc1a063aff4163151de4d5c
1
#include <stdio.h>
2
3
int
main
(
int
argc
,
const char
*
argv
[])
4
{
5
int
*
null_ptr
=
0
;
6
printf
(
"Hello, segfault!
\n
"
);
7
printf
(
"Now crash %d
\n
"
, *
null_ptr
);
// Crash here.
8
}