Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / SystemZ / branch-01.ll
blob5f74eef05c57cfc6bc3ef4bf4b9319d325935dd0
1 ; Test a simple unconditional jump.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 define void @f1(ptr %dest) {
6 ; CHECK-LABEL: f1:
7 ; CHECK: .L[[LABEL:.*]]:
8 ; CHECK: mvi 0(%r2), 1
9 ; CHECK: j .L[[LABEL]]
10   br label %loop
11 loop:
12   store volatile i8 1, ptr %dest
13   br label %loop