mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
1431b3c2f5
This adds all CodeGen tests for the SystemZ target. This version of the patch incorporates feedback from a review by Sean Silva. Thanks to all reviewers! Patch by Richard Sandiford. llvm-svn: 181204
19 lines
383 B
LLVM
19 lines
383 B
LLVM
; 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: 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)
|
|
}
|