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
/
bf-sign-1.c
blob
3cc3eac15fdf8e8080e3075533a352df7fd76f4c
1
main
()
2
{
3
struct
{
4
signed int
s
:
3
;
5
unsigned int
u
:
3
;
6
int
i
:
3
;
7
}
x
= {-
1
, -
1
, -
1
};
8
9
if
(
x
.
u
!=
7
)
10
abort
();
11
if
(
x
.
s
!= -
1
)
12
abort
();
13
14
if
(
x
.
i
!= -
1
&&
x
.
i
!=
7
)
15
abort
();
16
17
exit
(
0
);
18
}