[lldb] Make sure Blocks always have a parent (#117683)
[llvm-project.git] / llvm / test / CodeGen / SystemZ / la-04.ll
blob29b5f4d59fd0eb049db9e5c6fa51da74da7ae46e
1 ; Test blockaddress.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 ; Do some arbitrary work and return the address of the following label.
6 define ptr@f1(ptr %addr) {
7 ; CHECK-LABEL: f1:
8 ; CHECK: mvi 0(%r2), 1
9 ; CHECK: [[LABEL:\.L.*]]:
10 ; CHECK: larl %r2, [[LABEL]]
11 ; CHECK: br %r14
12 entry:
13   store i8 1, ptr %addr
14   br label %b.lab
16 b.lab:
17   ret ptr blockaddress(@f1, %b.lab)