diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-17 18:25:32 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-17 18:25:32 +0000 |
commit | 164741cae2f26830354685fdff686e0861ff5d89 (patch) | |
tree | bdba5ab14e3ca5119687dbb0585d79e8c6475d58 /test/Transforms/TailCallElim | |
parent | 89d306669e30077c205f60e7f3e4c233f92c9ad0 (diff) |
Temporarily XFAIL waiting for a fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/TailCallElim')
-rw-r--r-- | test/Transforms/TailCallElim/setjmp.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Transforms/TailCallElim/setjmp.ll b/test/Transforms/TailCallElim/setjmp.ll index 7ef9cb360f..ae06927a3d 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() |