Heuristic: If the number of operands in the alias are more than the number of
[llvm/stm8.git] / test / Transforms / TailCallElim / setjmp.ll
blob7b7fe568259e498c5974edf4b5871cedff54a4ed
1 ; RUN: opt < %s -tailcallelim -S | FileCheck %s
3 ; Test that we don't tail call in a functions that calls setjmp.
5 ; CHECK-NOT: tail call void @bar()
7 define void @foo(i32* %x) {
8 bb:
9   %tmp75 = tail call i32 @setjmp(i32* %x)
10   call void @bar()
11   ret void
14 declare i32 @setjmp(i32*)
16 declare void @bar()