Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / postlegalizer-combiner-undef.mir
blob085a6694995ff772233686ba43d23a5339641ed4
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple aarch64 -run-pass=aarch64-postlegalizer-combiner -verify-machineinstrs %s -o - | FileCheck %s
4 ...
5 ---
6 name:            delete_store_undef
7 legalized:       true
8 tracksRegLiveness: true
9 body:             |
10   bb.1.entry:
11     liveins: $x0
13     ; A store of an implicit def can safely be deleted before or after
14     ; legalization.
16     ; CHECK-LABEL: name: delete_store_undef
17     ; CHECK: liveins: $x0
18     ; CHECK-NEXT: {{  $}}
19     ; CHECK-NEXT: RET_ReallyLR
20     %0:_(p0) = COPY $x0
21     %1:_(s32) = G_IMPLICIT_DEF
22     G_STORE %1(s32), %0(p0) :: (store (s32))
23     RET_ReallyLR
25 ...
26 ---
27 name:            delete_add_undef
28 legalized:       true
29 tracksRegLiveness: true
30 body:             |
31   bb.1.entry:
32     liveins: $x0
34     ; CHECK-LABEL: name: delete_add_undef
35     ; CHECK: liveins: $x0
36     ; CHECK-NEXT: {{  $}}
37     ; CHECK-NEXT: [[DEF:%[0-9]+]]:_(s64) = G_IMPLICIT_DEF
38     ; CHECK-NEXT: $x0 = COPY [[DEF]](s64)
39     ; CHECK-NEXT: RET_ReallyLR
40     %0:_(s64) = COPY $x0
41     %1:_(s64) = G_IMPLICIT_DEF
42     %add:_(s64) = G_ADD %0(s64), %1(s64)
43     $x0 = COPY %add
44     RET_ReallyLR
46 ...