repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
overloadable.m
blob
0d55cd3f3a265af320c20b64cb8e2dcc5bc02565
1
// rdar://6657613
2
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
3
4
@class C;
5
6
// CHECK: _Z1fP11objc_object
7
// CHECK-NOT: _Z1fP11objc_object
8
void __attribute__((overloadable)) f(id c) { }
9
10
// CHECK: _Z1fP1C
11
// CHECK-NOT: _Z1fP1C
12
void __attribute__((overloadable)) f(C *c) { }