aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/bswap-01.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/bswap-01.ll')
-rw-r--r--test/CodeGen/SystemZ/bswap-01.ll24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/CodeGen/SystemZ/bswap-01.ll b/test/CodeGen/SystemZ/bswap-01.ll
deleted file mode 100644
index 7e6c83af3f81..000000000000
--- a/test/CodeGen/SystemZ/bswap-01.ll
+++ /dev/null
@@ -1,24 +0,0 @@
-; Test byteswaps between registers.
-;
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
-
-declare i32 @llvm.bswap.i32(i32 %a)
-declare i64 @llvm.bswap.i64(i64 %a)
-
-; Check 32-bit register-to-register byteswaps.
-define i32 @f1(i32 %a) {
-; CHECK-LABEL: f1:
-; CHECK: lrvr [[REGISTER:%r[0-5]]], %r2
-; CHECK: br %r14
- %swapped = call i32 @llvm.bswap.i32(i32 %a)
- ret i32 %swapped
-}
-
-; Check 64-bit register-to-register byteswaps.
-define i64 @f2(i64 %a) {
-; CHECK-LABEL: f2:
-; CHECK: lrvgr %r2, %r2
-; CHECK: br %r14
- %swapped = call i64 @llvm.bswap.i64(i64 %a)
- ret i64 %swapped
-}