The LIT test cases were migrated with the script provided by Nikita Popov. No manual changes were made. Committed without review since no functional changes, after consultation with uweigand.
15 lines
289 B
LLVM
15 lines
289 B
LLVM
; Test a simple unconditional jump.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
define void @f1(ptr %dest) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: .L[[LABEL:.*]]:
|
|
; CHECK: mvi 0(%r2), 1
|
|
; CHECK: j .L[[LABEL]]
|
|
br label %loop
|
|
loop:
|
|
store volatile i8 1, ptr %dest
|
|
br label %loop
|
|
}
|