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
/
pr19689.c
blob
608415f3693a57bae540e3c68d7dceb9cabe24fa
1
extern
void
abort
(
void
);
2
3
struct
4
{
5
int
b
:
29
;
6
}
f
;
7
8
void
foo
(
short
j
)
9
{
10
f
.
b
=
j
;
11
}
12
13
int
main
()
14
{
15
foo
(-
55
);
16
if
(
f
.
b
!= -
55
)
17
abort
();
18
return
0
;
19
}