mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Fix previous checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f8820c353b
commit
30bc0547d9
@ -142,6 +142,8 @@ template<class Payload>
|
||||
class InstForest : public std::vector<InstTreeNode<Payload> *> {
|
||||
friend class InstTreeNode<Payload>;
|
||||
|
||||
typedef std::vector<InstTreeNode<Payload> *>::const_iterator const_iterator;
|
||||
|
||||
// InstMap - Map contains entries for ALL instructions in the method and the
|
||||
// InstTreeNode that they correspond to.
|
||||
//
|
||||
@ -196,7 +198,7 @@ public:
|
||||
|
||||
// print - Called by operator<< below...
|
||||
void print(std::ostream &out) const {
|
||||
for (typename const_iterator I = begin(), E = end(); I != E; ++I)
|
||||
for (const_iterator I = begin(), E = end(); I != E; ++I)
|
||||
out << *I;
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user