diff options
author | Devang Patel <dpatel@apple.com> | 2010-03-25 06:26:14 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-03-25 06:26:14 +0000 |
commit | d4c6c3a7c3140ce487a805138b6f53f82ff6b783 (patch) | |
tree | 829c8ef12a4e0a76d8b139cd51a8d95ebb3208d4 | |
parent | d1baa252c41322d3a38d4360ba1dbcc20c0badf9 (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99493 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 325a0dc9c0..017a8de192 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -65,7 +65,7 @@ private: /// DbgValMap. class SDDbgInfo { SmallVector<SDDbgValue*, 32> DbgValues; - DenseMap<const SDNode*, SmallVector<SDDbgValue*, 2> > DbgVblMap; + DenseMap<const SDNode*, SmallVector<SDDbgValue*, 2> > DbgValMap; void operator=(const SDDbgInfo&); // Do not implement. SDDbgInfo(const SDDbgInfo&); // Do not implement. @@ -74,12 +74,12 @@ public: void add(SDDbgValue *V, const SDNode *Node = 0) { if (Node) - DbgVblMap[Node].push_back(V); + DbgValMap[Node].push_back(V); DbgValues.push_back(V); } void clear() { - DbgVblMap.clear(); + DbgValMap.clear(); DbgValues.clear(); } @@ -88,7 +88,7 @@ public: } SmallVector<SDDbgValue*,2> &getSDDbgValues(const SDNode *Node) { - return DbgVblMap[Node]; + return DbgValMap[Node]; } typedef SmallVector<SDDbgValue*,32>::iterator DbgIterator; |