In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / Transforms / TailCallElim / dont-tce-tail-marked-call.ll
blobe20fe18d5adaf1bfb7cb24f3dcaaa89dd84e144f
1 ; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | \
2 ; RUN:    grep {call i32 @foo}
4 declare void @bar(i32*)
6 define i32 @foo(i32 %N) {
7         %A = alloca i32, i32 %N         ; <i32*> [#uses=2]
8         store i32 17, i32* %A
9         call void @bar( i32* %A )
10         %X = tail call i32 @foo( i32 %N )               ; <i32> [#uses=1]
11         ret i32 %X