This removes links to rdar, which is an internal bug tracker that the community doesn't have visibility into. See further discussion at: https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
19 lines
678 B
Objective-C
19 lines
678 B
Objective-C
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
|
// expected-no-diagnostics
|
|
extern id objc_msgSend(id self, SEL op, ...);
|
|
|
|
struct objc_super {
|
|
id receiver;
|
|
Class super_class;
|
|
};
|
|
|
|
extern __attribute__((visibility("default"))) id objc_msgSendSuper(struct objc_super *super, SEL op, ...)
|
|
__attribute__((availability(macosx,introduced=10.0)));
|
|
|
|
extern __attribute__((visibility("default"))) void objc_msgSendSuper_stret(struct objc_super *super, SEL op, ...)
|
|
__attribute__((availability(macosx,introduced=10.0)));
|
|
|
|
extern __attribute__((visibility("default"))) void objc_msgSend_stret(id self, SEL op, ...)
|
|
__attribute__((availability(macosx,introduced=10.0)));
|
|
|