[Hexagon] Fix post-ra expansion of PS_wselect

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@348655 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Krzysztof Parzyszek
2018-12-07 22:00:53 +00:00
parent 29d82fd995
commit afa1a8e4ef
2 changed files with 13 additions and 1 deletions
-1
View File
@@ -1293,7 +1293,6 @@ bool HexagonInstrInfo::expandPostRAPseudo(MachineInstr &MI) const {
auto T = BuildMI(MBB, MI, DL, get(Hexagon::V6_vccombine))
.add(Op0)
.addReg(PReg, S)
.add(Op1)
.addReg(SrcHi)
.addReg(SrcLo);
if (IsDestLive)
+13
View File
@@ -0,0 +1,13 @@
# RUN: llc -march=hexagon -run-pass postrapseudos %s -o - | FileCheck %s
# Check that this doesn't crash.
# CHECK: $w2 = V6_vccombine $p0, $v1, $v0
# CHECK: $w2 = V6_vnccombine killed $p0, $v3, $v2, implicit $w2
name: fred
tracksRegLiveness: true
body: |
bb.0:
liveins: $p0, $w0, $w1
$w2 = PS_wselect killed $p0, killed $w0, killed $w1
---