diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-11-10 12:15:49 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-11-10 12:16:23 +0000 |
commit | 4ff246fef25e1353c6f5ebbde625ae30953def7a (patch) | |
tree | ccb218c1cff349322539bff835bba0991d32c7d2 | |
parent | 6c94068da99ae694a14f2484a2c9ac74a22bf61a (diff) | |
download | bcm5719-llvm-4ff246fef25e1353c6f5ebbde625ae30953def7a.tar.gz bcm5719-llvm-4ff246fef25e1353c6f5ebbde625ae30953def7a.zip |
Remove unused variable (which allows us to remove vector include). NFC.
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 5c7ff8d76b4..17d1cd2a977 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -149,7 +149,6 @@ #include <string> #include <tuple> #include <utility> -#include <vector> using namespace llvm; @@ -7119,8 +7118,6 @@ VPlanPtr LoopVectorizationPlanner::buildVPlanWithVPRecipes( VPBB = FirstVPBBForBB; Builder.setInsertPoint(VPBB); - std::vector<Instruction *> Ingredients; - // Introduce each ingredient into VPlan. for (Instruction &I : BB->instructionsWithoutDebug()) { Instruction *Instr = &I; |