[polly] r244735 - Revert r244459 'Make StmtSet a list'

Johannes Doerfert via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 12 03:55:52 PDT 2015


Author: jdoerfert
Date: Wed Aug 12 05:55:52 2015
New Revision: 244735

URL: http://llvm.org/viewvc/llvm-project?rev=244735&view=rev
Log:
Revert r244459 'Make StmtSet a list'

Modified:
    polly/trunk/include/polly/ScopInfo.h

Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=244735&r1=244734&r2=244735&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Wed Aug 12 05:55:52 2015
@@ -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;
 




More information about the llvm-commits mailing list