aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/la-04.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/la-04.ll')
-rw-r--r--test/CodeGen/SystemZ/la-04.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/SystemZ/la-04.ll b/test/CodeGen/SystemZ/la-04.ll
deleted file mode 100644
index 4d47308e04ba..000000000000
--- a/test/CodeGen/SystemZ/la-04.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; Test blockaddress.
-;
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
-
-; Do some arbitrary work and return the address of the following label.
-define i8 *@f1(i8 *%addr) {
-; CHECK-LABEL: f1:
-; CHECK: mvi 0(%r2), 1
-; CHECK: [[LABEL:\.L.*]]:
-; CHECK: larl %r2, [[LABEL]]
-; CHECK: br %r14
-entry:
- store i8 1, i8 *%addr
- br label %b.lab
-
-b.lab:
- ret i8 *blockaddress(@f1, %b.lab)
-}