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
/
functionalities
/
process_save_core
/
main.cpp
blob
4037ea522cac59038551ecd61be93d28cc022cab
1
int
global
=
42
;
2
3
int
4
bar
(
int
x
)
5
{
6
int
y
=
4
*
x
+
global
;
7
return
y
;
8
}
9
10
int
11
foo
(
int
x
)
12
{
13
int
y
=
2
*
bar
(
3
*
x
);
14
return
y
;
15
}
16
17
int
18
main
()
19
{
20
return
0
*
foo
(
1
);
21
}