[llvm] 3192653 - [SLP] Remove field unused after 33ce97f to silence buildbots [NFC]

Philip Reames via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 27 10:18:17 PST 2022


Author: Philip Reames
Date: 2022-02-27T10:18:10-08:00
New Revision: 319265328c5dd77bce3bc65b9e70b69a6d50850f

URL: https://github.com/llvm/llvm-project/commit/319265328c5dd77bce3bc65b9e70b69a6d50850f
DIFF: https://github.com/llvm/llvm-project/commit/319265328c5dd77bce3bc65b9e70b69a6d50850f.diff

LOG: [SLP] Remove field unused after 33ce97f to silence buildbots [NFC]

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
index 64bf4b4f46926..387d12be3e016 100644
--- a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+++ b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
@@ -792,7 +792,7 @@ class BoUpSLP {
           TargetLibraryInfo *TLi, AAResults *Aa, LoopInfo *Li,
           DominatorTree *Dt, AssumptionCache *AC, DemandedBits *DB,
           const DataLayout *DL, OptimizationRemarkEmitter *ORE)
-      : BatchAA(*Aa), F(Func), SE(Se), TTI(Tti), TLI(TLi), AA(Aa), LI(Li),
+      : BatchAA(*Aa), F(Func), SE(Se), TTI(Tti), TLI(TLi), LI(Li),
         DT(Dt), AC(AC), DB(DB), DL(DL), ORE(ORE), Builder(Se->getContext()) {
     CodeMetrics::collectEphemeralValues(F, AC, EphValues);
     // Use the vector register size specified by the target unless overridden
@@ -2933,7 +2933,6 @@ class BoUpSLP {
   ScalarEvolution *SE;
   TargetTransformInfo *TTI;
   TargetLibraryInfo *TLI;
-  AAResults *AA;
   LoopInfo *LI;
   DominatorTree *DT;
   AssumptionCache *AC;


        


More information about the llvm-commits mailing list