llvm-for-llvmta/tools/clang/test/CodeGenObjC/objc2-protocol-metadata.m

18 lines
491 B
Mathematica
Raw Normal View History

2022-04-25 13:02:35 +02:00
// 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* }