mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
Bug fix. Must also match ResNo when matching an operand with a user.
llvm-svn: 45028
This commit is contained in:
parent
900a684ae7
commit
713b398a35
@ -326,7 +326,7 @@ void ScheduleDAG::EmitCopyFromReg(SDNode *Node, unsigned ResNo,
|
||||
} else {
|
||||
for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
|
||||
SDOperand Op = Use->getOperand(i);
|
||||
if (Op.Val != Node)
|
||||
if (Op.Val != Node || Op.ResNo != ResNo)
|
||||
continue;
|
||||
MVT::ValueType VT = Node->getValueType(Op.ResNo);
|
||||
if (VT != MVT::Other && VT != MVT::Flag)
|
||||
|
Loading…
Reference in New Issue
Block a user