Eric Christopher | 93848e0 | 2012-04-11 07:08:37 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -S -emit-llvm %s -o - | FileCheck %s |
David Blaikie | 8a40cc6 | 2013-03-19 23:10:14 +0000 | [diff] [blame] | 2 | // CHECK: {{.*}} [ DW_TAG_structure_type ] [Circle] [line 11, |
Eric Christopher | be6c686 | 2012-04-11 05:56:05 +0000 | [diff] [blame] | 3 | @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 |