Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / PHIElimination-crash.mir
blob8f43686429268baefc325c4f2c59f2915dd86519
1 # RUN: llc -mtriple=aarch64-linux-gnu -verify-machineinstrs -o /dev/null %s \
2 # RUN:   -run-pass=livevars,phi-node-elimination,twoaddressinstruction \
3 # RUN:   -no-phi-elim-live-out-early-exit=1 -phi-elim-split-all-critical-edges=1
4 # RUN: llc -mtriple=aarch64-linux-gnu -verify-machineinstrs -o /dev/null %s \
5 # RUN:   --passes='require<live-vars>,phi-node-elimination,two-address-instruction' \
6 # RUN:   -no-phi-elim-live-out-early-exit=1 -phi-elim-split-all-critical-edges=1
8 # Used to result in
10 #     *** Bad machine code: LiveVariables: Block should not be in AliveBlocks ***
12 # Just verify that we do not crash (or get verifier error).
14 ---
15 name: test
16 tracksRegLiveness: true
17 body: |
18   bb.0:
19     liveins: $nzcv, $wzr
20     Bcc 8, %bb.2, implicit $nzcv
22   bb.1:
23     %x:gpr32 = COPY $wzr
25   bb.2:
26     %y:gpr32 = PHI %x:gpr32, %bb.1, undef %undef:gpr32, %bb.0
27     $wzr = COPY %y:gpr32
28 ...