Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
c20482b10ee4ffcea31f67392743ccdf6df1f7f4
/
.
/
test
/
CodeGen
/
2008-02-08-bitfield-bug.c
blob: 3818e961c73d5a6237a1c6a2a91a0f70b6871f4c [
file
] [
log
] [
blame
]
Daniel Dunbar
2d6ca8d
2008-08-21 02:51:29 +0000
[
diff
] [
blame
]
1
// RUN: clang %s -emit-llvm -o %t
Lauro Ramos Venancio
c0959fc
2008-02-08 19:46:46 +0000
[
diff
] [
blame
]
2
3
struct
test
{
4
unsigned
a
:
1
;
5
unsigned
b
:
1
;
6
};
7
8
struct
test
*
t
;
9