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
fortran/trans-openmp.cc: Use the correct member in gfc_omp_namelist [PR118745]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr84265.c
blob
59984aead053727c509e4a1dfa342f4c8d895209
1
/* { dg-do compile } */
2
3
struct
a
4
{
5
unsigned long
b
;
6
unsigned long
c
;
7
int
d
;
8
int
*
e
;
9
char
f
;
10
};
11
12
struct
13
{
14
int
g
;
15
struct
a h
[];
16
}
i
;
17
18
int
j
,
k
;
19
void
l
()
20
{
21
for
(;
k
;
k
++)
22
j
+= (
int
) (
i
.
h
[
k
].
c
-
i
.
h
[
k
].
b
);
23
}