commit | ac7d05c4bfbd988a08e9cd8ac817be7b22cd9953 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri Apr 16 16:55:18 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri Apr 16 16:55:18 2010 +0000 |
tree | 60cb61b8e2c2f916909fdc49767994d7b0852896 | |
parent | a44e522b7df67e4a895850b6813e980c3321fb78 [diff] [blame] |
Fix an assertion string. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101478 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index ca37a19..412de1c 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -660,7 +660,7 @@ 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; }