repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve compatibility with older versions of Windows.
[llvm/msp430.git]
/
test
/
FrontendC
/
2003-08-30-LargeIntegerBitfieldMember.c
blob
f67aee4c10fb535eacb3edcd311b526cd5a25946
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
struct
foo
{
4
unsigned int
I
:
1
;
5
unsigned char
J
[
1
][
123
];
6
unsigned int
K
:
1
;
7
};
8
9
struct
foo F
;