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
/
lang
/
c
/
forward
/
main.c
blob
5a13f1d1ea2b6c35f9983a9cfdd317b8d813ce00
1
#include
"foo.h"
2
3
struct
bar
4
{
5
int
a
;
6
int
b
;
7
};
8
9
int
10
main
(
int
argc
,
char const
*
argv
[])
11
{
12
struct
bar b
= {
1
,
2
};
13
14
foo
(&
b
);
15
16
return
0
;
17
}