view clang/test/CodeGenObjC/debug-info-selector.m @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
line wrap: on
line source

// RUN: %clang_cc1 -emit-llvm  -debug-info-kind=limited %s -o - | FileCheck %s
// Radar 8494540

// CHECK: objc_selector
@interface MyClass {
}
- (id)init;
@end

@implementation MyClass
- (id) init
{
  return self;
}
@end