Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Thumb / machine-cse-physreg.mir
blob2fa22feb4e1b321e66b5a84875da7cce8c42ea5d
1 # RUN: llc -mtriple thumbv5e -run-pass=machine-cse -o - %s | FileCheck %s
3 # This is a contrived example made to expose a bug in
4 # MachineCSE, see PR32538.
6 # MachineCSE must not remove this def of $cpsr:
7 # CHECK-LABEL: bb.1:
8 # CHECK: , $cpsr = tLSLri
10 ...
11 ---
12 name:            spam
13 registers:
14   - { id: 0, class: tgpr }
15   - { id: 1, class: tgpr }
16   - { id: 2, class: tgpr }
17   - { id: 3, class: tgpr }
18 liveins:
19   - { reg: '$r0', virtual-reg: '%0' }
20 body:             |
21   bb.0:
22     liveins: $r0
23     %0 = COPY $r0
24     %1, $cpsr = tLSLri %0, 2, 14, $noreg
25     tCMPi8 %0, 5, 14, $noreg, implicit-def $cpsr
26     tBcc %bb.8, 8, $cpsr
28   bb.1:
29     %2, $cpsr = tLSLri %0, 2, 14, $noreg
31   bb.8:
32     liveins: $cpsr
33     %3 = COPY $cpsr
34     tSTRi killed %3, %0, 0, 14, $noreg
35 ...