1*67e74705SXin Li// RUN: %clang_cc1 -emit-llvm -o %t %s 2*67e74705SXin Li// Test that meta-data for ivar lists with unnamed bitfield are generated. 3*67e74705SXin Li// 4*67e74705SXin Li@interface Foo { 5*67e74705SXin Li@private 6*67e74705SXin Li int first; 7*67e74705SXin Li int :1; 8*67e74705SXin Li int third :1; 9*67e74705SXin Li int :1; 10*67e74705SXin Li int fifth :1; 11*67e74705SXin Li} 12*67e74705SXin Li@end 13*67e74705SXin Li@implementation Foo 14*67e74705SXin Li@end 15