Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr95649.c
blob: cc9b7640c19f74ccd967f4dc0ca7af89c54aa72f [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-scev-cprop" } */
char
b
(
void
);
char
*
d
;
int
e
;
int
f
;
void
g
(
char
*
h
)
{
while
(
d
)
{
long
i
=
b
();
if
(
h
+
i
>
d
)
break
;
if
(
f
>
0
||
e
)
do
*
h
++
=
*
h
;
while
(--
i
);
}
}