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 tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
loop-4.c
blob
b308aa27689afe936944a463fd2e15dc67aad654
1
int
2
f
()
3
{
4
int
j
=
1
;
5
long
i
;
6
for
(
i
= -
0x70000000
L
;
i
<
0x60000000
L
;
i
+=
0x10000000
L
)
j
<<=
1
;
7
return
j
;
8
}
9
10
int
11
main
()
12
{
13
if
(
f
() !=
8192
)
14
abort
();
15
exit
(
0
);
16
}