Temporarily XFAIL waiting for a fix.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142215 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2011-10-17 18:25:32 +00:00
parent 89d306669e
commit 164741cae2
+2 -1
View File
@@ -1,4 +1,5 @@
; RUN: opt < %s -tailcallelim -S | FileCheck %s
; XFAIL: *
; Test that we don't tail call in a functions that calls returns_twice
; functions.
@@ -15,7 +16,7 @@ bb:
ret void
}
declare i32 @setjmp(i32*)
declare i32 @setjmp(i32*) returns_twice
; CHECK: foo2
; CHECK-NOT: tail call void @bar()