summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/03-RetXorImmSubreg.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2011-10-24 23:48:32 +0000
committerDan Gohman <gohman@apple.com>2011-10-24 23:48:32 +0000
commit29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf (patch)
tree3de39be9068ed749690b6ce82fb34b79b0232f70 /test/CodeGen/SystemZ/03-RetXorImmSubreg.ll
parentb36e03d987c843ccb731627ffd2b1db17bd72e39 (diff)
downloadllvm-29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf.tar.gz
llvm-29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf.tar.bz2
llvm-29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf.tar.xz
Remove the SystemZ backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142878 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/SystemZ/03-RetXorImmSubreg.ll')
-rw-r--r--test/CodeGen/SystemZ/03-RetXorImmSubreg.ll58
1 files changed, 0 insertions, 58 deletions
diff --git a/test/CodeGen/SystemZ/03-RetXorImmSubreg.ll b/test/CodeGen/SystemZ/03-RetXorImmSubreg.ll
deleted file mode 100644
index 70ee45415d..0000000000
--- a/test/CodeGen/SystemZ/03-RetXorImmSubreg.ll
+++ /dev/null
@@ -1,58 +0,0 @@
-; RUN: llc < %s -march=systemz | grep xilf | count 9
-; RUN: llc < %s -march=systemz | grep llgfr | count 3
-; RUN: llc < %s -march=systemz | grep lgfr | count 6
-
-define i32 @foo1(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 1
- ret i32 %c
-}
-
-define i32 @foo2(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 131072
- ret i32 %c
-}
-
-define i32 @foo7(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 123456
- ret i32 %c
-}
-
-define zeroext i32 @foo3(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 1
- ret i32 %c
-}
-
-define zeroext i32 @foo8(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 123456
- ret i32 %c
-}
-
-define signext i32 @foo4(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 131072
- ret i32 %c
-}
-
-define zeroext i32 @foo5(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 1
- ret i32 %c
-}
-
-define signext i32 @foo6(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 131072
- ret i32 %c
-}
-
-define signext i32 @foo9(i32 %a, i32 %b) {
-entry:
- %c = xor i32 %a, 123456
- ret i32 %c
-}
-