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:
bbe1225
)
Remove a now-dead map, patch by Saem Ghani, thanks!
author
Chris Lattner
<sabre@nondot.org>
Wed, 7 Dec 2005 05:41:44 +0000
(
05:41
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Wed, 7 Dec 2005 05:41:44 +0000
(
05:41
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24629
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/ADT/PostOrderIterator.h
patch
|
blob
|
history
diff --git
a/include/llvm/ADT/PostOrderIterator.h
b/include/llvm/ADT/PostOrderIterator.h
index a0ff051542cab286b6dfecb5ff1d96e445a7538a..76d99b4a2d6b44b984277fc9a17bda699f90a540 100644
(file)
--- a/
include/llvm/ADT/PostOrderIterator.h
+++ b/
include/llvm/ADT/PostOrderIterator.h
@@
-46,8
+46,7
@@
class po_iterator : public forward_iterator<typename GT::NodeType, ptrdiff_t>,
typedef forward_iterator<typename GT::NodeType, ptrdiff_t> super;
typedef typename GT::NodeType NodeType;
typedef typename GT::ChildIteratorType ChildItTy;
-
- std::set<NodeType *> Visited; // All of the blocks visited so far...
+
// VisitStack - Used to maintain the ordering. Top = current block
// First element is basic block pointer, second is the 'next child' to visit
std::stack<std::pair<NodeType *, ChildItTy> > VisitStack;