mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Fix an assertion string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101478 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -660,7 +660,7 @@ SDValue SelectionDAGBuilder::getValue(const Value *V) {
|
|||||||
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
|
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
|
||||||
visit(CE->getOpcode(), *CE);
|
visit(CE->getOpcode(), *CE);
|
||||||
SDValue N1 = NodeMap[V];
|
SDValue N1 = NodeMap[V];
|
||||||
assert(N1.getNode() && "visit didn't populate the ValueMap!");
|
assert(N1.getNode() && "visit didn't populate the NodeMap!");
|
||||||
return N1;
|
return N1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user