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
/
breakpoint
/
main.c
blob
2677594e622ef0af1f2e4a666978e0ca77349d11
1
#include <stdio.h>
2
3
void
4
AFunction
()
5
{
6
printf
(
"I am a function.
\n
"
);
7
}
8
9
int
10
main
()
11
{
12
AFunction
();
13
return
0
;
14
}