blob: 556bf0ee63f7cc64d5577727987b9d22a0ce018b [file] [log] [blame]
Eric Christopher03c50992012-04-11 07:08:37 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -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