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
/
pr34070-2.c
blob
4c1ce7b0231f018a1f1f96414a3515a990ac4305
1
extern
void
abort
(
void
);
2
3
int
f
(
unsigned int
x
,
int
n
)
4
{
5
return
((
int
)
x
) / (
1
<<
n
);
6
}
7
8
int
main
()
9
{
10
if
(
f
(-
1
,
1
) !=
0
)
11
abort
();
12
return
0
;
13
}