blob: 8ad590357b0d6af61230927cd45e28fdd6d78f47 [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
Eric Christopher46853cb2012-04-11 06:09:33 +00002// CHECK: metadata !{i32 {{.*}}, metadata {{.*}}, metadata !"Circle", metadata {{.*}}, i32 11, i64 64, i64 64, i32 0, i32 512, null, metadata {{.*}}, i32 16, 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