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
openmp: Fix signed/unsigned warning
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr95272.c
blob
47698ff3e566afdf57886312a8186e340c7d4e65
1
/* { dg-do compile } */
2
3
enum
{
a
=
5
,
b
};
4
typedef
struct
{
5
int
c
[
b
];
6
}
d
;
7
extern
d e
[];
8
int
f
;
9
int
g
[
6
];
10
void
h
() {
11
int
i
;
12
for
(;
f
;
f
++) {
13
i
=
0
;
14
for
(;
i
<
b
;
i
++)
15
if
(
e
[
f
].
c
[
i
])
16
g
[
i
] =
e
[
f
].
c
[
i
];
17
}
18
}