[PGO] Rename the profdata filename to avoid the conflict b/w tests.
[oota-llvm.git] / test / Transforms / Inline / 2008-09-02-NoInline.ll
1 ; RUN: opt < %s -inline -S | grep call | count 1
2
3 define i32 @fn2() noinline {
4   ret i32 1
5 }
6
7 define i32 @fn3() {
8    %r = call i32 @fn2()
9    ret i32 %r
10 }