repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
loop-6.c
blob
42eb9e7d5e8cff7d55dc0c6bc4a9751a65a95e18
1
main
()
2
{
3
char
c
;
4
char
d
;
5
int
nbits
;
6
c
= -
1
;
7
for
(
nbits
=
1
;
nbits
<
100
;
nbits
++) {
8
d
= (
1
<<
nbits
) -
1
;
9
if
(
d
==
c
)
10
break
;
11
}
12
if
(
nbits
==
100
)
13
abort
();
14
exit
(
0
);
15
}