1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
16 lines
200 B
Objective-C
16 lines
200 B
Objective-C
// RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s
|
|
// Radar 8494540
|
|
|
|
// CHECK: objc_selector
|
|
@interface MyClass {
|
|
}
|
|
- (id)init;
|
|
@end
|
|
|
|
@implementation MyClass
|
|
- (id) init
|
|
{
|
|
return self;
|
|
}
|
|
@end
|