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
/
SymbolFile
/
OnDemand
/
Inputs
/
basic.cpp
blob
ec459383fc46ebeb8b31b89fd55b10588dd6e39e
1
int
bar
(
int
x
,
int
y
) {
return
x
+
y
+
5
; }
2
3
int
foo
(
int
x
,
int
y
) {
return
bar
(
x
,
y
) +
12
; }
4
5
int
main
(
int
argc
,
char
**
argv
) {
return
foo
(
33
,
78
); }