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
/
macosx
/
profile_vrs_detach
/
main.c
blob
939308414edcfc4283fdfeed39153c2568324698
1
#include <stdio.h>
2
#include <unistd.h>
3
4
int
5
main
()
6
{
7
while
(
1
) {
8
sleep
(
1
);
// Set a breakpoint here
9
printf
(
"I slept
\n
"
);
10
}
11
return
0
;
12
}