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
/
Watchpoint
/
Inputs
/
languages.cpp
blob
98b653f3d404a3080d25ccaa7d1ce53d3f9f1883
1
#include <cstdint>
2
#include <iostream>
3
4
uint64_t
g_foo
=
5
;
5
uint64_t
g_bar
=
6
;
6
uint64_t
g_baz
=
7
;
7
8
int
main
() {
9
int
val
=
8
;
10
printf
(
"Hello world! %d
\n
"
,
val
);
11
return
0
;
12
}