[PGO] Rename the profdata filename to avoid the conflict b/w tests.
[oota-llvm.git] / test / Transforms / Inline / pr21206.ll
1 ; RUN: opt < %s -inline -S | FileCheck %s
2
3 $c = comdat any
4 ; CHECK: $c = comdat any
5
6 define linkonce_odr void @foo() comdat($c) {
7   ret void
8 }
9 ; CHECK: define linkonce_odr void @foo() comdat($c)
10
11 define linkonce_odr void @bar() comdat($c) {
12   ret void
13 }
14 ; CHECK: define linkonce_odr void @bar() comdat($c)
15
16 define void()* @zed()  {
17   ret void()* @foo
18 }