repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
2003-08-30-LargeIntegerBitfieldMember.c
blob
e1ca88cdc6f1e29b2d73bd6078d2af33175fc6ed
1
// RUN: %llvmgcc -S %s -o - | llvm-as -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
;