projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a44e522
)
Fix an assertion string.
author
Dan Gohman
<gohman@apple.com>
Fri, 16 Apr 2010 16:55:18 +0000
(16:55 +0000)
committer
Dan Gohman
<gohman@apple.com>
Fri, 16 Apr 2010 16:55:18 +0000
(16:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101478
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index ca37a19448c69d38dcf5c1834ee86fa637543b29..412de1c89bb00bd8299bc555f9ee1a8f667f10e5 100644
(file)
--- a/
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@
-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
Valu
eMap!");
+ assert(N1.getNode() && "visit didn't populate the
Nod
eMap!");
return N1;
}