mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Fix null pointer dereference.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84806 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
49b63a1f2c
commit
443b2153e3
@ -4601,7 +4601,7 @@ SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
|
||||
N->InitOperands(new SDUse[NumOps], Ops, NumOps);
|
||||
N->OperandsNeedDelete = true;
|
||||
} else
|
||||
MN->InitOperands(MN->OperandList, Ops, NumOps);
|
||||
N->InitOperands(N->OperandList, Ops, NumOps);
|
||||
}
|
||||
|
||||
// Delete any nodes that are still dead after adding the uses for the
|
||||
|
Loading…
x
Reference in New Issue
Block a user