diff options
author | Dan Gohman <gohman@apple.com> | 2011-10-27 22:56:32 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2011-10-27 22:56:32 +0000 |
commit | 33ba8b0e96acde0d8ab1ffc565a5ef4c8b6b6ac2 (patch) | |
tree | 19356b63d7d9c64977cbfdac0d82e272b117cfbf /test/CodeGen/Alpha/cmov.ll | |
parent | 03e03b098462c2715598ca96298110b63c57a2d3 (diff) |
Remove the Alpha backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Alpha/cmov.ll')
-rw-r--r-- | test/CodeGen/Alpha/cmov.ll | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/test/CodeGen/Alpha/cmov.ll b/test/CodeGen/Alpha/cmov.ll deleted file mode 100644 index 9b655f03ef..0000000000 --- a/test/CodeGen/Alpha/cmov.ll +++ /dev/null @@ -1,23 +0,0 @@ -; RUN: llc < %s -march=alpha | not grep cmovlt -; RUN: llc < %s -march=alpha | grep cmoveq - -define i64 @cmov_lt(i64 %a, i64 %c) { -entry: - %tmp.1 = icmp slt i64 %c, 0 ; <i1> [#uses=1] - %retval = select i1 %tmp.1, i64 %a, i64 10 ; <i64> [#uses=1] - ret i64 %retval -} - -define i64 @cmov_const(i64 %a, i64 %b, i64 %c) { -entry: - %tmp.1 = icmp slt i64 %a, %b ; <i1> [#uses=1] - %retval = select i1 %tmp.1, i64 %c, i64 10 ; <i64> [#uses=1] - ret i64 %retval -} - -define i64 @cmov_lt2(i64 %a, i64 %c) { -entry: - %tmp.1 = icmp sgt i64 %c, 0 ; <i1> [#uses=1] - %retval = select i1 %tmp.1, i64 10, i64 %a ; <i64> [#uses=1] - ret i64 %retval -} |