summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/debug-info-impl.m
blob: 8ad590357b0d6af61230927cd45e28fdd6d78f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -S -emit-llvm %s -o - | FileCheck %s
// CHECK: metadata !{i32 {{.*}}, metadata {{.*}}, metadata !"Circle", metadata {{.*}}, i32 11, i64 64, i64 64, i32 0, i32 512, null, metadata {{.*}}, i32 16, i32 0} ; [ DW_TAG_structure_type ]
@interface NSObject {
  struct objc_object *isa;
}
@end

@interface Shape : NSObject

@end
@interface Circle : Shape

@end
@implementation Circle

@end