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

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

@implementation INTF
@end