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
X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git]
/
test
/
FrontendC++
/
2007-04-05-PackedBitFields-1.cpp
blob
174dddf6ab650f982d3084399e38e6da666cb4ee
1
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3
#ifdef PACKED
4
#define P __attribute__((packed))
5
#else
6
#define P
7
#endif
8
9
struct
P M_Packed
{
10
unsigned int
l_Packed
;
11
unsigned short
k_Packed
:
6
,
12
i_Packed
:
15
,
13
j_Packed
:
11
;
14
15
};
16
17
struct
M_Packed sM_Packed
;
18
19
int
testM_Packed
(
void
) {
20
struct
M_Packed x
;
21
return
(
x
.
i_Packed
!=
0
);
22
}
23