repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up some of LVI:
[llvm.git]
/
test
/
FrontendC
/
2008-01-04-WideBitfield.c
blob
a0045a4027628cad546c7abe4957cce680980b1e
1
// RUN: %llvmgcc -S -o - %s
2
// PR1386
3
#include <stdint.h>
4
5
struct
X
{
6
unsigned char
pad
:
4
;
7
uint64_t
a
:
64
;
8
}
__attribute__
((
packed
))
x
;
9
10
uint64_t
f
(
void
)
11
{
12
return
x
.
a
;
13
}