mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[VPlan] Remove unused Phi member from VPWidenPHIRecipe (NFC).
The member is not needed any longer after recent changes.
This commit is contained in:
parent
674fdd8f0c
commit
33fe411575
@ -1041,8 +1041,6 @@ public:
|
||||
/// For reduction PHIs, RdxDesc must point to the corresponding recurrence
|
||||
/// descriptor and the start value is the first operand of the recipe.
|
||||
class VPWidenPHIRecipe : public VPRecipeBase, public VPValue {
|
||||
PHINode *Phi;
|
||||
|
||||
/// Descriptor for a reduction PHI.
|
||||
RecurrenceDescriptor *RdxDesc = nullptr;
|
||||
|
||||
@ -1058,7 +1056,7 @@ public:
|
||||
/// Create a VPWidenPHIRecipe for \p Phi
|
||||
VPWidenPHIRecipe(PHINode *Phi)
|
||||
: VPRecipeBase(VPWidenPHISC, {}),
|
||||
VPValue(VPValue::VPVWidenPHISC, Phi, this), Phi(Phi) {}
|
||||
VPValue(VPValue::VPVWidenPHISC, Phi, this) {}
|
||||
~VPWidenPHIRecipe() override = default;
|
||||
|
||||
/// Method to support type inquiry through isa, cast, and dyn_cast.
|
||||
|
Loading…
Reference in New Issue
Block a user