diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-05 22:28:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-05 22:28:33 +0000 |
commit | 581f84f4cbb6a6de2248ef794dd880a1a86671be (patch) | |
tree | 373c2bccb0edd2b3d0d7fdb78fe6a9879641cf3a /test/Transforms/TailCallElim | |
parent | 514630f41f7a33f1b93158da476bd9b972719267 (diff) | |
download | external_llvm-581f84f4cbb6a6de2248ef794dd880a1a86671be.zip external_llvm-581f84f4cbb6a6de2248ef794dd880a1a86671be.tar.gz external_llvm-581f84f4cbb6a6de2248ef794dd880a1a86671be.tar.bz2 |
move these xfailed tests to lib/Target/README.txt
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/TailCallElim')
-rw-r--r-- | test/Transforms/TailCallElim/tail_call_with_branch.ll | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/test/Transforms/TailCallElim/tail_call_with_branch.ll b/test/Transforms/TailCallElim/tail_call_with_branch.ll deleted file mode 100644 index b373455..0000000 --- a/test/Transforms/TailCallElim/tail_call_with_branch.ll +++ /dev/null @@ -1,31 +0,0 @@ -; This testcase is due to tail-duplication not wanting to copy the return -; instruction into the terminating blocks because there was other code -; optimized out of the function after the taildup happened. -; XFAIL: * -; RUN: llvm-upgrade < %s | llvm-as | opt -tailcallelim | llvm-dis | not grep call - -int %t4(int %a) { -entry: - %tmp.1 = and int %a, 1 - %tmp.2 = cast int %tmp.1 to bool - br bool %tmp.2, label %then.0, label %else.0 - -then.0: - %tmp.5 = add int %a, -1 - %tmp.3 = call int %t4( int %tmp.5 ) - br label %return - -else.0: - %tmp.7 = setne int %a, 0 - br bool %tmp.7, label %then.1, label %return - -then.1: - %tmp.11 = add int %a, -2 - %tmp.9 = call int %t4( int %tmp.11 ) - br label %return - -return: - %result.0 = phi int [ 0, %else.0 ], [ %tmp.3, %then.0 ], [ %tmp.9, %then.1 ] - ret int %result.0 -} - |