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
/
pr46316.c
blob
7aafaa740ba9732651cdf01079c6a73302d5f04e
1
extern
void
abort
(
void
);
2
3
long long
__attribute__
((
noinline
,
noclone
))
4
foo
(
long long
t
)
5
{
6
while
(
t
> -
4
)
7
t
-=
2
;
8
9
return
t
;
10
}
11
12
int
main
(
void
)
13
{
14
if
(
foo
(
0
) != -
4
)
15
abort
();
16
return
0
;
17
}