aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/ivar-layout-64-bitfields.m
blob: 69f53936782ae52ac7e6eedcad8eff60b7fcc7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang-cc -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
@interface I
{
  struct {
    unsigned int d : 1;
  } bitfield;
}
@end

@implementation I
@end