Revert r244459 'Make StmtSet a list'

llvm-svn: 244735
This commit is contained in:
Johannes Doerfert 2015-08-12 10:55:52 +00:00
parent 3f0a2a325f
commit 33d98a3f45
1 changed files with 1 additions and 2 deletions

View 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;