Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr91178-2.c
blob: ac5ae0e4fe5ce5d8874ea45ea8935cfc55faaf80 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-require-effective-target size32plus } */
int
a
[
100
][
70304
];
int
b
[
100
];
void
c
()
{
for
(
int
d
=
2
;
d
<
4
;
d
++)
for
(
int
e
=
2
;
e
<=
50
;
e
++)
for
(
int
f
=
32
;
f
<=
38
;
f
++)
b
[
d
+
f
]
-=
a
[
e
][
5
];
}