Revert r244459 'Make StmtSet a list'
authorJohannes Doerfert <doerfert@cs.uni-saarland.de>
Wed, 12 Aug 2015 10:55:52 +0000 (10:55 +0000)
committerJohannes Doerfert <doerfert@cs.uni-saarland.de>
Wed, 12 Aug 2015 10:55:52 +0000 (10:55 +0000)
llvm-svn: 244735

polly/include/polly/ScopInfo.h

index 0fcff02..58710b4 100644 (file)
@@ -27,7 +27,6 @@
 #include "llvm/Analysis/RegionPass.h"
 #include "isl/ctx.h"
 
-#include <list>
 #include <forward_list>
 #include <deque>
 
@@ -759,7 +758,7 @@ private:
   /// Max loop depth.
   unsigned MaxLoopDepth;
 
-  typedef std::list<ScopStmt> StmtSet;
+  typedef std::deque<ScopStmt> StmtSet;
   /// The statements in this Scop.
   StmtSet Stmts;