repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2018-01-16 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr62075.c
blob
e42bff5971ab1a79575688b853b2af9599b2022f
1
/* { dg-do compile } */
2
3
int
a
[
16
][
2
];
4
struct
A
5
{
6
int
b
[
16
][
2
];
7
int
c
[
16
][
1
];
8
};
9
10
void
11
foo
(
struct
A
*
x
)
12
{
13
int
i
;
14
for
(
i
=
0
;
i
<
16
; ++
i
)
15
{
16
x
->
b
[
i
][
0
] =
a
[
i
][
0
];
17
x
->
c
[
i
][
0
] =
0
!=
a
[
i
][
0
];
18
x
->
b
[
i
][
1
] =
a
[
i
][
1
];
19
}
20
}
21