blob: a8450dd5808e58848c4859a9d2b8471c21fd35dd [file] [log] [blame]
Eric Christopher93848e02012-04-11 07:08:37 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -S -emit-llvm %s -o - | FileCheck %s
David Blaikie085b76c2012-11-03 00:27:14 +00002// CHECK: metadata !{i32 {{.*}}, metadata {{.*}}, metadata !"Circle", metadata {{.*}}, i32 11, i64 64, i64 64, i32 0, i32 512, null, metadata {{.*}}, i32 16, i32 0, i32 0} ; [ DW_TAG_structure_type ]
Eric Christopherbe6c6862012-04-11 05:56:05 +00003@interface NSObject {
4 struct objc_object *isa;
5}
6@end
7
8@interface Shape : NSObject
9
10@end
11@interface Circle : Shape
12
13@end
14@implementation Circle
15
16@end