[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / SystemZ / branch-01.ll
blob12ed2d32a801a403317078c680f5be4060bb741a
1 ; Test a simple unconditional jump.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 define void @f1(i8 *%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, i8 *%dest
13   br label %loop