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
/
20010422-1.c
blob
5c6bccc9ed134d6312ed8c4d55802492da0d7d4b
1
unsigned int
foo
(
unsigned int
x
)
2
{
3
if
(
x
<
5
)
4
x
=
4
;
5
else
6
x
=
8
;
7
return
x
;
8
}
9
10
int
main
(
void
)
11
{
12
if
(
foo
(
8
) !=
8
)
13
abort
();
14
exit
(
0
);
15
}