[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / attr-used-on-method.m
blobd8b2a5d291841a2d1301dd633c52d7558b3f51aa
1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.10 %s -S -emit-llvm -o - | FileCheck %s
3 // CHECK: @llvm.used =
4 // CHECK-SAME: @"\01-[X m]"
6 // CHECK: define internal void @"\01-[X m]"(
8 @interface X @end
9 @implementation X
10 -(void) m __attribute__((used)) {}
11 @end