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:
Dan Gohman 2010-04-16 16:55:18 +00:00
parent a44e522b7d
commit ac7d05c4bf

View File

@ -660,7 +660,7 @@ SDValue SelectionDAGBuilder::getValue(const Value *V) {
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
visit(CE->getOpcode(), *CE);
SDValue N1 = NodeMap[V];
assert(N1.getNode() && "visit didn't populate the ValueMap!");
assert(N1.getNode() && "visit didn't populate the NodeMap!");
return N1;
}