summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/SystemZ/la-04.ll
blob: 29b5f4d59fd0eb049db9e5c6fa51da74da7ae46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; Test blockaddress.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s

; Do some arbitrary work and return the address of the following label.
define ptr@f1(ptr %addr) {
; CHECK-LABEL: f1:
; CHECK: mvi 0(%r2), 1
; CHECK: [[LABEL:\.L.*]]:
; CHECK: larl %r2, [[LABEL]]
; CHECK: br %r14
entry:
  store i8 1, ptr %addr
  br label %b.lab

b.lab:
  ret ptr blockaddress(@f1, %b.lab)
}