diff options
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h')
| -rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h b/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h index 97077cce83e..a5e85f27fab 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h +++ b/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h @@ -228,11 +228,11 @@ public:    /// Plan how to best vectorize, return the best VF and its cost, or None if    /// vectorization and interleaving should be avoided up front. -  Optional<VectorizationFactor> plan(bool OptForSize, unsigned UserVF); +  Optional<VectorizationFactor> plan(unsigned UserVF);    /// Use the VPlan-native path to plan how to best vectorize, return the best    /// VF and its cost. -  VectorizationFactor planInVPlanNativePath(bool OptForSize, unsigned UserVF); +  VectorizationFactor planInVPlanNativePath(unsigned UserVF);    /// Finalize the best decision and dispose of all other VPlans.    void setBestPlan(unsigned VF, unsigned UF); | 

