Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr92891.c
blob: 7490c90fb55de259a1023226a2784d7e8bc84317 [
file
] [
log
] [
blame
]
/* PR tree-optimization/92891 */
int
a
,
b
;
char
*
foo
(
int
)
__attribute__
((
alloc_size
(
1
)));
void
bar
(
void
)
{
char
*
e
=
foo
(
2
);
while
(
a
)
{
if
(
b
<=
0
)
continue
;
e
[
b
]
=
0
;
}
}