mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
[SDAG] Add an assert that we don't mess up the number of values when
replacing nodes in the legalizer. This caught a number of bugs for me during development. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214022 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
722419ef52
commit
f1ce818bef
@ -180,6 +180,9 @@ public:
|
||||
}
|
||||
}
|
||||
void ReplaceNode(SDNode *Old, SDNode *New) {
|
||||
assert(Old->getNumValues() == New->getNumValues() &&
|
||||
"Replacing one node with another that produces a different number "
|
||||
"of values!");
|
||||
DAG.ReplaceAllUsesWith(Old, New);
|
||||
for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
|
||||
DAG.TransferDbgValues(SDValue(Old, i), SDValue(New, i));
|
||||
|
Loading…
x
Reference in New Issue
Block a user