[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git] / llvm / test / CodeGen / SystemZ / tls-11.mir
blob623a8ab519f733dc0e2bddc62cb27af03654e49e
1 # RUN: llc -mtriple=s390x-linux-gnu -mcpu=z196 -O0 -start-before=prologepilog \
2 # RUN:   -o - %s | FileCheck %s
4 # Test that a COPY to CC gets implemented with a tmlh or tmhh depending on
5 # the source register.
7 ---
8 name:            fun0
9 tracksRegLiveness: true
10 body:             |
11   bb.0:
12   liveins: $r3l, $r4h
13     ; CHECK-LABEL: fun0
14     ; CHECK: tmlh %r3, 12288
15     ; CHECK: tmhh %r4, 12288
16     $cc = COPY $r3l
17     $cc = COPY $r4h
18 ...