Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
94a4bcdce36558e918be2c29f2e4ce4cb1528c8f
/
.
/
test
/
CFrontend
/
2008-01-04-WideBitfield.c
blob: a0045a4027628cad546c7abe4957cce680980b1e [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S -o - %s
// PR1386
#include
<stdint.h>
struct
X
{
unsigned
char
pad
:
4
;
uint64_t
a
:
64
;
}
__attribute__
((
packed
))
x
;
uint64_t
f
(
void
)
{
return
x
.
a
;
}