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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
overloadable.m
blob
1001e317f37954cf9d14f1a8aad734efb3253813
1
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
2
3
@class C;
4
5
// CHECK: _Z1fP11objc_object
6
// CHECK-NOT: _Z1fP11objc_object
7
void __attribute__((overloadable)) f(id c) { }
8
9
// CHECK: _Z1fP1C
10
// CHECK-NOT: _Z1fP1C
11
void __attribute__((overloadable)) f(C *c) { }