aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-31 19:46:22 +0000
committerChris Lattner <sabre@nondot.org>2003-08-31 19:46:22 +0000
commit0c6a271d9163319b6699b2210b2da74175df4205 (patch)
treeebfbc426fa1dcb8dfcd1b1f61f82db6155c1de3e /include
parent1da3398600971e89bf7465ad7e5e90cc71f5f4d0 (diff)
downloadexternal_llvm-0c6a271d9163319b6699b2210b2da74175df4205.zip
external_llvm-0c6a271d9163319b6699b2210b2da74175df4205.tar.gz
external_llvm-0c6a271d9163319b6699b2210b2da74175df4205.tar.bz2
This should use Support/iterator, not <iterator>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8266 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/PgmDependenceGraph.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Analysis/PgmDependenceGraph.h b/include/llvm/Analysis/PgmDependenceGraph.h
index 25fa55f..3ae7477 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