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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
960317-1.c
blob
8d7907d751c34bfd1691e54d8aba35b8ac7b5b4b
1
int
2
f
(
unsigned
bitcount
,
int
mant
)
3
{
4
int
mask
= -
1
<<
bitcount
;
5
{
6
if
(! (
mant
& -
mask
))
7
goto
ab
;
8
if
(
mant
& ~
mask
)
9
goto
auf
;
10
}
11
ab
:
12
return
0
;
13
auf
:
14
return
1
;
15
}
16
17
main
()
18
{
19
if
(
f
(
0
, -
1
))
20
abort
();
21
exit
(
0
);
22
}