[llvm] 3872e55 - [LoopVectorize] Fix build error (#126218)

via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 7 02:16:37 PST 2025


Author: David Sherwood
Date: 2025-02-07T10:16:32Z
New Revision: 3872e55758a5de035c032a975f244302c3ddacc3

URL: https://github.com/llvm/llvm-project/commit/3872e55758a5de035c032a975f244302c3ddacc3
DIFF: https://github.com/llvm/llvm-project/commit/3872e55758a5de035c032a975f244302c3ddacc3.diff

LOG: [LoopVectorize] Fix build error (#126218)

Fixes issue caused by 1930524bbde3cd26ff527bbdb5e1f937f484edd6

Unused variable UsesMask in LoopVectorize.cpp

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 740e163d52f52c..6ad44259ccdf6e 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -6285,7 +6285,6 @@ void LoopVectorizationCostModel::setVectorizedCallDecision(ElementCount VF) {
 
       // Find the cost of vectorizing the call, if we can find a suitable
       // vector variant of the function.
-      bool UsesMask = false;
       VFInfo FuncInfo;
       Function *VecFunc = nullptr;
       // Search through any available variants for one we can use at this VF.
@@ -6337,7 +6336,6 @@ void LoopVectorizationCostModel::setVectorizedCallDecision(ElementCount VF) {
             break;
           }
           case VFParamKind::GlobalPredicate:
-            UsesMask = true;
             break;
           default:
             ParamsOk = false;


        


More information about the llvm-commits mailing list