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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20031211-1.c
blob
2361509a096acae2027d74ec4dda6072da5216fb
1
struct
a
{
unsigned int
bitfield
:
1
; };
2
3
unsigned int
x
;
4
5
main
()
6
{
7
struct
a a
= {
0
};
8
x
=
0xbeef
;
9
a
.
bitfield
|=
x
;
10
if
(
a
.
bitfield
!=
1
)
11
abort
();
12
exit
(
0
);
13
}