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
/
parray_vrs_char_array
/
main.c
blob
0571a6bc5f66d36aabfac230a306bc070172d525
1
struct
MyStruct
{
2
int
before
;
3
char
var
[
5
];
4
int
after
;
5
};
6
7
int
8
main
()
9
{
10
struct
MyStruct struct_arr
[
3
] = {{
112
,
"abcd"
,
221
},
11
{
313
,
"efgh"
,
414
},
12
{
515
,
"ijkl"
,
616
}};
13
struct
MyStruct
*
struct_ptr
=
struct_arr
;
14
return
struct_ptr
->
before
;
// Set a breakpoint here
15
}