[VPlan] Add destructor to VPReductionRecipe to unbreak build.
authorFlorian Hahn <flo@fhahn.com>
Tue, 6 Jul 2021 10:39:44 +0000 (11:39 +0100)
committerFlorian Hahn <flo@fhahn.com>
Tue, 6 Jul 2021 10:41:20 +0000 (11:41 +0100)
Attempt to unbreak
https://lab.llvm.org/buildbot/#/builders/67/builds/3363/steps/6/logs/stdio

llvm/lib/Transforms/Vectorize/VPlan.h

index 3f5f066..d92ea16 100644 (file)
@@ -1144,6 +1144,8 @@ public:
     addOperand(&Start);
   }
 
+  ~VPReductionPHIRecipe() override = default;
+
   /// Method to support type inquiry through isa, cast, and dyn_cast.
   static inline bool classof(const VPRecipeBase *R) {
     return R->getVPDefID() == VPRecipeBase::VPReductionPHISC;