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:
5007e1e
)
fix an off-by-one error.
author
Chris Lattner
<sabre@nondot.org>
Tue, 23 Feb 2010 01:07:09 +0000
(
01:07
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 23 Feb 2010 01:07:09 +0000
(
01:07
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96844
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/CodeGen/DAGISelHeader.h
patch
|
blob
|
history
diff --git
a/include/llvm/CodeGen/DAGISelHeader.h
b/include/llvm/CodeGen/DAGISelHeader.h
index d28f4dad044dc93462a5303a1e063a581274ed0e..345b9f4eb41ab8589b56496bb5c9f2b43e94955a 100644
(file)
--- a/
include/llvm/CodeGen/DAGISelHeader.h
+++ b/
include/llvm/CodeGen/DAGISelHeader.h
@@
-712,7
+712,7
@@
SDNode *SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
if (RecNo & 128)
RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex);
- assert(RecNo < RecordedNodes.size() && "Invalid
CheckSam
e");
+ assert(RecNo < RecordedNodes.size() && "Invalid
EmitNod
e");
Ops.push_back(RecordedNodes[RecNo]);
}