From: Bill Wendling Date: Mon, 17 Oct 2011 18:25:32 +0000 (+0000) Subject: Temporarily XFAIL waiting for a fix. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=164741cae2f26830354685fdff686e0861ff5d89;p=oota-llvm.git Temporarily XFAIL waiting for a fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142215 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/TailCallElim/setjmp.ll b/test/Transforms/TailCallElim/setjmp.ll index 7ef9cb360f5..ae06927a3d8 100644 --- a/test/Transforms/TailCallElim/setjmp.ll +++ b/test/Transforms/TailCallElim/setjmp.ll @@ -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()