diff options
| author | Florian Hahn <flo@fhahn.com> | 2019-12-07 08:52:36 +0000 |
|---|---|---|
| committer | Florian Hahn <flo@fhahn.com> | 2019-12-07 08:56:35 +0000 |
| commit | e60b36cf92e1570284482eddb2eac3652e28c2eb (patch) | |
| tree | 22ea32b378b8bcb8bab7ad0d96a9bfc3b627a6fc /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
| parent | 884351547da27e76e14bef5fe20c3e3cb0e89acd (diff) | |
| download | bcm5719-llvm-e60b36cf92e1570284482eddb2eac3652e28c2eb.tar.gz bcm5719-llvm-e60b36cf92e1570284482eddb2eac3652e28c2eb.zip | |
[VPlan] Rename VPlanHCFGTransforms to VPlanTransforms (NFC).
The file is intended to gather various VPlan transformations, not only
CFG related transforms. Actually, the only transformation there is not
CFG related.
Reviewers: Ayal, gilr, hsaito, rengolin
Reviewed By: gilr
Differential Revision: https://reviews.llvm.org/D70732
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 5c9bf24bb1c..3d21c9353e6 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -58,8 +58,8 @@ #include "VPRecipeBuilder.h" #include "VPlan.h" #include "VPlanHCFGBuilder.h" -#include "VPlanHCFGTransforms.h" #include "VPlanPredicator.h" +#include "VPlanTransforms.h" #include "llvm/ADT/APInt.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseMap.h" @@ -7262,9 +7262,8 @@ VPlanPtr LoopVectorizationPlanner::buildVPlan(VFRange &Range) { } SmallPtrSet<Instruction *, 1> DeadInstructions; - VPlanHCFGTransforms::VPInstructionsToVPRecipes( + VPlanTransforms::VPInstructionsToVPRecipes( OrigLoop, Plan, Legal->getInductionVars(), DeadInstructions); - return Plan; } |

