repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Really use attribute.
[llvm-complete.git]
/
test
/
CFrontend
/
2007-04-05-PackedBitFields-2.c
blob
d9db4206c169b57960d0022434da097137afb103
1
// RUN: %llvmgcc %s -S -o -
2
3
# define pck __attribute__((packed))
4
5
6
struct
pck F
{
7
unsigned long long
i
:
12
,
8
j
:
23
,
9
k
:
27
,
10
l
;
11
};
12
struct
F f1
;
13
14
void
foo
() {
15
f1
.
l
=
5
;
16
}