repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr95649.c
blob
cc9b7640c19f74ccd967f4dc0ca7af89c54aa72f
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-tree-scev-cprop" } */
3
4
char
b
(
void
);
5
char
*
d
;
6
int
e
;
7
int
f
;
8
void
9
g
(
char
*
h
)
10
{
11
while
(
d
)
12
{
13
long
i
=
b
();
14
if
(
h
+
i
>
d
)
15
break
;
16
if
(
f
>
0
||
e
)
17
do
18
*
h
++ = *
h
;
19
while
(--
i
);
20
}
21
}