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
/
python_api
/
run_locker
/
main.c
blob
2cdb68c740da1aaf167d911fa3df543f2dbfc543
1
#include <unistd.h>
2
3
int
4
SomethingToCall
() {
5
return
100
;
6
}
7
8
int
9
main
()
10
{
11
while
(
1
) {
12
sleep
(
1
);
13
}
14
return
SomethingToCall
();
15
}