Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr54321.c
blob: 13adc78d3459eacd950dcd7a37c694a48ef38f93 [
file
] [
log
] [
blame
]
/* PR tree-optimization/54321 */
struct
S
{
char
s
[
0
];
}
*
a
;
void
foo
(
void
)
{
char
*
b
=
a
->
s
;
int
c
=
0
;
b
[
0
]
=
0
;
while
(++
c
<
9
)
b
[
c
]
=
255
;
}