24 lines
795 B
Plaintext
24 lines
795 B
Plaintext
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
|
|
// PR7390
|
|
|
|
// CHECK: @[[setprioname:[^ ]*]] = {{.*}}"setPriority:
|
|
// CHECK-NEXT: @[[setpriosel:[^ ]*]] = {{.*}}getelementptr{{.*}}[[setprioname]]
|
|
@interface NSObject
|
|
- (void)respondsToSelector:(const SEL &)s ps:(SEL *)s1;
|
|
- (void)setPriority:(int)p;
|
|
- (void)Meth;
|
|
@end
|
|
|
|
@implementation NSObject
|
|
|
|
// CHECK-LABEL: define internal void @"\01-[NSObject Meth]"(
|
|
- (void)Meth {
|
|
// CHECK: call void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*, i8**, i8**)*){{.*}}, i8** @[[setpriosel]])
|
|
[self respondsToSelector:@selector(setPriority:) ps:&@selector(setPriority:)];
|
|
}
|
|
- (void)setPriority:(int)p {
|
|
}
|
|
- (void)respondsToSelector:(const SEL &)s ps:(SEL *)s1 {
|
|
}
|
|
@end
|