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
/
Shell
/
Recognizer
/
Inputs
/
assert.c
blob
612133502915219b75aedd6349e5ec18e96bb425
1
#include <assert.h>
2
3
int
main
() {
4
int
a
=
42
;
5
assert
(
a
==
42
);
6
a
--;
7
assert
(
a
==
42
);
8
return
0
;
9
}