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
/
2007-04-05-PackedBitFields.c
blob
f9de35639b0d539a7498ef9ec22e5522fca36a5e
1
// RUN: %llvmgcc %s -S -o -
2
3
# define pck __attribute__((packed))
4
5
6
struct
pck E
{
7
unsigned long long
l
,
8
i
:
12
,
9
j
:
23
,
10
k
:
29
; };
11
12
struct
E e1
;
13
14
void
foo
() {
15
e1
.
k
=
5
;
16
}