Sign in
ara-mdk
/
platform
/
external
/
llvm
/
6ff7240a5c484af6e42e2ba6a6d7e03ddf844922
/
.
/
test
/
CFrontend
/
2003-08-29-BitFieldStruct.c
blob: 8c303e8f2e01709fd6789f6990f740dfe8ec7bff [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
struct
Word
{
short
bar
;
short
baz
;
int
final
:
1
;
short
quux
;
}
*
word_limit
;
void
foo
()
{
word_limit
->
final
=
(
word_limit
->
final
&&
word_limit
->
final
);
}