aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/branch-01.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/branch-01.ll')
-rw-r--r--test/CodeGen/SystemZ/branch-01.ll14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/CodeGen/SystemZ/branch-01.ll b/test/CodeGen/SystemZ/branch-01.ll
deleted file mode 100644
index 12ed2d32a801..000000000000
--- a/test/CodeGen/SystemZ/branch-01.ll
+++ /dev/null
@@ -1,14 +0,0 @@
-; Test a simple unconditional jump.
-;
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
-
-define void @f1(i8 *%dest) {
-; CHECK-LABEL: f1:
-; CHECK: .L[[LABEL:.*]]:
-; CHECK: mvi 0(%r2), 1
-; CHECK: j .L[[LABEL]]
- br label %loop
-loop:
- store volatile i8 1, i8 *%dest
- br label %loop
-}