LoopVectorize: Use SetVector for the access set

We are creating the runtime checks using this set so we need a deterministic
iteration order.

llvm-svn: 184723
This commit is contained in:
Arnold Schwaighofer 2013-06-24 12:09:12 +00:00
parent 824b7d8dfd
commit 91472fa4fc
1 changed files with 2 additions and 1 deletions

View File

@ -49,6 +49,7 @@
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/EquivalenceClasses.h"
#include "llvm/ADT/MapVector.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/SmallVector.h"
@ -2888,7 +2889,7 @@ public:
DenseSet<MemAccessInfo> &getDependenciesToCheck() { return CheckDeps; }
private:
typedef DenseSet<MemAccessInfo> PtrAccessSet;
typedef SetVector<MemAccessInfo> PtrAccessSet;
typedef DenseMap<Value*, MemAccessInfo> UnderlyingObjToAccessMap;
/// \brief Go over all memory access or only the deferred ones if