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
/
980929-1.c
blob
1d9246e01d7b4216c39e3eeb0e98007c83477c02
1
void
f
(
int
i
)
2
{
3
if
(
i
!=
1000
)
4
abort
();
5
}
6
7
8
int
main
()
9
{
10
int
n
=
1000
;
11
int
i
;
12
13
f
(
n
);
14
for
(
i
=
0
;
i
<
1
; ++
i
) {
15
f
(
n
);
16
n
=
666
;
17
&
n
;
18
}
19
20
exit
(
0
);
21
}