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
PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
991202-1.c
blob
502acc74965e67ff6406a8f83ada02b8033aae16
1
int
x
,
y
;
2
3
int
4
main
()
5
{
6
x
=
2
;
7
y
=
x
;
8
do
9
{
10
x
=
y
;
11
y
=
2
*
y
;
12
}
13
while
( ! ((
y
-
x
) >=
20
));
14
exit
(
0
);
15
}
16