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