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
/
941101-1.c
blob
66b5f384a806b7c48a8c4dd9211077d2a43d3b0c
1
f
()
2
{
3
int
var
=
7
;
4
5
if
((
var
/
7
) ==
1
)
6
return
var
/
7
;
7
return
0
;
8
}
9
10
main
()
11
{
12
if
(
f
() !=
1
)
13
abort
();
14
exit
(
0
);
15
}