blob: 4e56988d61cba5cac57ea121b121599e7d47f6c6 [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 Christopherbe6c6862012-04-11 05:56:05 +00002@interface NSObject {
3 struct objc_object *isa;
4}
5@end
6
7@interface Shape : NSObject
8
9@end
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070010// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "Circle"
11// CHECK-SAME: line: [[@LINE+1]],
Eric Christopherbe6c6862012-04-11 05:56:05 +000012@interface Circle : Shape
13
14@end
15@implementation Circle
16
17@end