blob: a648ea17f64fc3ae533e9eea54721c4b57a75587 [file] [log] [blame]
Douglas Katzman3459ce22015-10-08 04:24:12 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -debug-info-kind=limited -S -emit-llvm %s -o - | FileCheck %s
Eric Christopher3d19de92012-04-11 05:56:05 +00002@interface NSObject {
3 struct objc_object *isa;
4}
5@end
6
7@interface Shape : NSObject
8
9@end
Duncan P. N. Exon Smith9dd4e4e2015-04-29 16:40:08 +000010// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Circle"
Duncan P. N. Exon Smithf04be1f2015-03-03 17:25:55 +000011// CHECK-SAME: line: [[@LINE+1]],
Eric Christopher3d19de92012-04-11 05:56:05 +000012@interface Circle : Shape
13
14@end
15@implementation Circle
16
17@end