| 1 | // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -debug-info-kind=limited -S -emit-llvm %s -o - | FileCheck %s |
|---|---|
| 2 | @interface NSObject { |
| 3 | struct objc_object *isa; |
| 4 | } |
| 5 | @end |
| 6 | |
| 7 | @interface Shape : NSObject |
| 8 | |
| 9 | @end |
| 10 | // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Circle" |
| 11 | // CHECK-SAME: line: [[@LINE+1]], |
| 12 | @interface Circle : Shape |
| 13 | |
| 14 | @end |
| 15 | @implementation Circle |
| 16 | |
| 17 | @end |
| 18 |