[VPlan] Add destructor to VPReductionRecipe to unbreak build.

Attempt to unbreak
https://lab.llvm.org/buildbot/#/builders/67/builds/3363/steps/6/logs/stdio
This commit is contained in:
Florian Hahn 2021-07-06 11:39:44 +01:00
parent c9d747e9cd
commit bbcbf21ae6
No known key found for this signature in database
GPG Key ID: 61D7554B5CECDC0D
1 changed files with 2 additions and 0 deletions

View 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;