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-29-BitFieldStruct.c
blob
57273cd863931e7e6324db692c23e98f7614e7a2
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
struct
Word
{
4
short
bar
;
5
short
baz
;
6
int
final
:
1
;
7
short
quux
;
8
} *
word_limit
;
9
10
void
foo
()
11
{
12
word_limit
->
final
= (
word_limit
->
final
&&
word_limit
->
final
);
13
}