Sign in
ara-mdk
/
platform
/
external
/
llvm
/
6ff7240a5c484af6e42e2ba6a6d7e03ddf844922
/
.
/
test
/
CFrontend
/
2003-08-30-LargeIntegerBitfieldMember.c
blob: f67aee4c10fb535eacb3edcd311b526cd5a25946 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
struct
foo
{
unsigned
int
I
:
1
;
unsigned
char
J
[
1
][
123
];
unsigned
int
K
:
1
;
};
struct
foo F
;