You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
491 B
18 lines
491 B
// RUN: %clang_cc1 -triple x86_64-apple-macosx10.10 -emit-llvm -o - %s | FileCheck %s
|
|
// rdar://20286356
|
|
|
|
@protocol P1
|
|
- InstP;
|
|
+ ClsP;
|
|
@end
|
|
|
|
@interface INTF <P1>
|
|
@end
|
|
|
|
@implementation INTF
|
|
- InstP { return 0; }
|
|
+ ClsP { return 0; }
|
|
@end
|
|
|
|
// CHECK: %struct._protocol_t = type { i8*, i8*, %struct._objc_protocol_list*, %struct.__method_list_t*, %struct.__method_list_t*, %struct.__method_list_t*, %struct.__method_list_t*, %struct._prop_list_t*, i32, i32, i8**, i8*, %struct._prop_list_t* }
|