mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 22:16:05 +00:00

expression Clang emits invalid protocol metadata when a @protocol expression is used with a forward-declared protocol. The protocol metadata is missing protocol conformance list of the protocol since we don't have access to the definition of it in the compiled translation unit. The linker then might end up picking the invalid metadata when linking which will lead to incorrect runtime protocol conformance checks. This commit makes sure that Clang fails to compile code that uses a @protocol expression with a forward-declared protocol. This ensures that Clang does not emit invalid protocol metadata. I added an extra assert in CodeGen to ensure that this kind of issue won't happen in other places. rdar://32787811 Differential Revision: https://reviews.llvm.org/D49462 llvm-svn: 340102
29 lines
626 B
Objective-C
29 lines
626 B
Objective-C
|
|
@protocol foo;
|
|
@protocol foo2
|
|
@end
|
|
@class itf;
|
|
|
|
// Expressions
|
|
typedef typeof(@"foo" "bar") objc_string;
|
|
typedef typeof(@encode(int)) objc_encode;
|
|
typedef typeof(@protocol(foo2)) objc_protocol;
|
|
typedef typeof(@selector(noArgs)) objc_selector_noArgs;
|
|
typedef typeof(@selector(oneArg:)) objc_selector_oneArg;
|
|
typedef typeof(@selector(foo:bar:)) objc_selector_twoArg;
|
|
|
|
|
|
// Types.
|
|
typedef typeof(id<foo>) objc_id_protocol_ty;
|
|
|
|
typedef typeof(itf*) objc_interface_ty;
|
|
typedef typeof(itf<foo>*) objc_qual_interface_ty;
|
|
|
|
@interface PP
|
|
@property (assign) id prop;
|
|
@end
|
|
|
|
static inline id getPseudoObject(PP *p) {
|
|
return p.prop;
|
|
}
|