mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-07 08:34:59 +00:00
86eac722f9
Mostly, try to depend on the annotation comments more so these tests are more legible, brief, and agnostic to schema changes in the future (sure, they're not agnostic to changes to the comment annotations but since they're easier to read they should be easier to update if that happens). llvm-svn: 177457
17 lines
303 B
Objective-C
17 lines
303 B
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -S -emit-llvm %s -o - | FileCheck %s
|
|
// CHECK: {{.*}} [ DW_TAG_structure_type ] [Circle] [line 11,
|
|
@interface NSObject {
|
|
struct objc_object *isa;
|
|
}
|
|
@end
|
|
|
|
@interface Shape : NSObject
|
|
|
|
@end
|
|
@interface Circle : Shape
|
|
|
|
@end
|
|
@implementation Circle
|
|
|
|
@end
|