2011-05-16 03:05:33 +00:00
|
|
|
; RUN: opt < %s -tailcallelim -S | FileCheck %s
|
|
|
|
|
2011-10-05 20:05:13 +00:00
|
|
|
; Test that we don't tail call in a functions that calls returns_twice
|
|
|
|
; functions.
|
2011-05-16 03:05:33 +00:00
|
|
|
|
2011-10-05 20:05:13 +00:00
|
|
|
declare void @bar()
|
|
|
|
|
|
|
|
; CHECK: foo1
|
2011-05-16 03:05:33 +00:00
|
|
|
; CHECK-NOT: tail call void @bar()
|
|
|
|
|
2011-10-05 20:05:13 +00:00
|
|
|
define void @foo1(i32* %x) {
|
2011-05-16 03:05:33 +00:00
|
|
|
bb:
|
|
|
|
%tmp75 = tail call i32 @setjmp(i32* %x)
|
|
|
|
call void @bar()
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2011-10-17 18:25:32 +00:00
|
|
|
declare i32 @setjmp(i32*) returns_twice
|
2011-05-16 03:05:33 +00:00
|
|
|
|
2011-10-05 20:05:13 +00:00
|
|
|
; CHECK: foo2
|
|
|
|
; CHECK-NOT: tail call void @bar()
|
|
|
|
|
|
|
|
define void @foo2(i32* %x) {
|
|
|
|
bb:
|
|
|
|
%tmp75 = tail call i32 @zed2(i32* %x)
|
|
|
|
call void @bar()
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
declare i32 @zed2(i32*) returns_twice
|