Let MachineVerifier be aware of mem-to-mem instructions.
[oota-llvm.git] / test / CodeGen / SystemZ / branch-01.ll
1 ; Test a simple unconditional jump.
2 ;
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
4
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
14 }