llvm-project/clang/test/CodeGenObjC/attr-used-on-method.m

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
264 B
Mathematica
Raw Normal View History

// RUN: %clang_cc1 -triple x86_64-apple-macosx10.10 %s -S -emit-llvm -o - | FileCheck %s
// CHECK: @llvm.used =
// CHECK-SAME: @"\01-[X m]"
// CHECK: define internal void @"\01-[X m]"(
@interface X @end
@implementation X
-(void) m __attribute__((used)) {}
@end