[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / overloadable.m
blob0d55cd3f3a265af320c20b64cb8e2dcc5bc02565
1 // rdar://6657613
2 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
4 @class C;
6 // CHECK: _Z1fP11objc_object
7 // CHECK-NOT: _Z1fP11objc_object
8 void __attribute__((overloadable)) f(id c) { }
10 // CHECK: _Z1fP1C
11 // CHECK-NOT: _Z1fP1C
12 void __attribute__((overloadable)) f(C *c) { }