Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AArch64 / PHIElimination-crash.mir
blob1a1ba154062b7f9e9431a03858a9a2ff4ab27b15
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
5 # Used to result in
7 #     *** Bad machine code: LiveVariables: Block should not be in AliveBlocks ***
9 # Just verify that we do not crash (or get verifier error).
11 ---
12 name: test
13 tracksRegLiveness: true
14 body: |
15   bb.0:
16     liveins: $nzcv, $wzr
17     Bcc 8, %bb.2, implicit $nzcv
19   bb.1:
20     %x:gpr32 = COPY $wzr
22   bb.2:
23     %y:gpr32 = PHI %x:gpr32, %bb.1, undef %undef:gpr32, %bb.0
24     $wzr = COPY %y:gpr32
25 ...