summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/bitfield-ivar-metadata.m
blob: f720bcc5b5b630484d79707afb2c254d4a20dd0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: clang-cc -emit-llvm -o %t %s

@interface INTF
{
    unsigned ivar1;
    unsigned ivar2;
    unsigned char BDIVAR3:1;
    unsigned char BDIVAR4:1;
}
@end

@implementation INTF
@end