diff --git a/lib/Transforms/Vectorize/LoopVectorize.h b/lib/Transforms/Vectorize/LoopVectorize.h index e5ef29052e2..cae1093a558 100644 --- a/lib/Transforms/Vectorize/LoopVectorize.h +++ b/lib/Transforms/Vectorize/LoopVectorize.h @@ -47,12 +47,12 @@ #define LV_NAME "loop-vectorize" #define DEBUG_TYPE LV_NAME -#include "llvm/Analysis/ScalarEvolution.h" -#include "llvm/ADT/SmallVector.h" #include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/MapVector.h" #include "llvm/ADT/SmallPtrSet.h" +#include "llvm/ADT/SmallVector.h" +#include "llvm/Analysis/ScalarEvolution.h" #include "llvm/IRBuilder.h" - #include using namespace llvm; @@ -304,7 +304,7 @@ public: /// InductionList saves induction variables and maps them to the /// induction descriptor. - typedef DenseMap InductionList; + typedef MapVector InductionList; /// Returns true if it is legal to vectorize this loop. /// This does not mean that it is profitable to vectorize this