mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
don't add nodes to the now-dead nodes list multiple times, this
can cause a crash on crazy situations in msp430 when morph-node-to is disabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99739 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a591ff53d9
commit
856fb395e4
@ -1592,8 +1592,9 @@ UpdateChainsAndFlags(SDNode *NodeToMatch, SDValue InputChain,
|
||||
assert(ChainVal.getValueType() == MVT::Other && "Not a chain?");
|
||||
CurDAG->ReplaceAllUsesOfValueWith(ChainVal, InputChain, &ISU);
|
||||
|
||||
// If the node became dead, delete it.
|
||||
if (ChainNode->use_empty())
|
||||
// If the node became dead and we haven't already seen it, delete it.
|
||||
if (ChainNode->use_empty() &&
|
||||
!std::count(NowDeadNodes.begin(), NowDeadNodes.end(), ChainNode))
|
||||
NowDeadNodes.push_back(ChainNode);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user