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) {
9 %tmp75 = tail call i32 @setjmp(i32* %x)
14 declare i32 @setjmp(i32*)