repo.or.cz
/
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: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr84132.C
blob
205b8f63812c78ad9ba6489b64d249b252d19fd5
1
/* { dg-do compile } */
2
3
struct g {
4
char b;
5
unsigned char *d[];
6
} e;
7
unsigned char f;
8
void i()
9
{
10
for (int h;; h++)
11
{
12
unsigned a = h;
13
for (int c = 0; c < 256; c += 6)
14
for (int h = c; h < c + 6; h++)
15
e.d[h + a] = &f;
16
}
17
}