Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / int-add-18.mir
blob0137be95c516fca8753172747976703a3622e567
1 # RUN: llc -mtriple=s390x-linux-gnu -mcpu=z13 -start-before=postrapseudos \
2 # RUN:   %s -o - | FileCheck %s
4 # Test that an AHIMuxK pseudo does not result in a COPY (risbhg) if the
5 # source and destination registers are the same.
7 ---
8 name:             fun
9 tracksRegLiveness: true
10 body:             |
11   bb.0:
12     $r1h = IIHF 0
13     renamable $r1h = nuw nsw AHIMuxK killed renamable $r1h, 4, implicit-def dead $cc
15     ; CHECK-LABEL: fun
16     ; CHECK-NOT: risbhg
17     ; CHECK: aih %r1, 4
18 ...