diff options
-rw-r--r-- | include/llvm/Analysis/PgmDependenceGraph.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Analysis/PgmDependenceGraph.h b/include/llvm/Analysis/PgmDependenceGraph.h index 25fa55f1fa..3ae74779e5 100644 --- a/include/llvm/Analysis/PgmDependenceGraph.h +++ b/include/llvm/Analysis/PgmDependenceGraph.h @@ -37,7 +37,7 @@ /* #include "llvm/Analysis/PostDominators.h" -- see below */ #include "llvm/Instruction.h" #include "llvm/Pass.h" -#include <iterator> +#include "Support/iterator" class DSGraph; class DependenceGraph; @@ -133,8 +133,7 @@ public: /// is normally not constructed for SSA def-use dependences). ///--------------------------------------------------------------------------- -class PDGIterator: public forward_iterator<Dependence, ptrdiff_t> -{ +class PDGIterator: public forward_iterator<Dependence, ptrdiff_t> { DepIterState* istate; #if 0 |