@@ -3565,7 +3565,7 @@ class VPlan {
3565
3565
3566
3566
// / Contains all the external definitions created for this VPlan. External
3567
3567
// / definitions are VPValues that hold a pointer to their underlying IR.
3568
- SmallVector<VPValue *, 16 > VPLiveInsToFree ;
3568
+ SmallVector<VPValue *, 16 > VPLiveIns ;
3569
3569
3570
3570
// / Mapping from SCEVs to the VPValues representing their expansions.
3571
3571
// / NOTE: This mapping is temporary and will be removed once all users have
@@ -3754,7 +3754,7 @@ class VPlan {
3754
3754
assert (V && " Trying to get or add the VPValue of a null Value" );
3755
3755
if (!Value2VPValue.count (V)) {
3756
3756
VPValue *VPV = new VPValue (V);
3757
- VPLiveInsToFree .push_back (VPV);
3757
+ VPLiveIns .push_back (VPV);
3758
3758
assert (VPV->isLiveIn () && " VPV must be a live-in." );
3759
3759
assert (!Value2VPValue.count (V) && " Value already exists in VPlan" );
3760
3760
Value2VPValue[V] = VPV;
@@ -3770,7 +3770,7 @@ class VPlan {
3770
3770
VPValue *getLiveIn (Value *V) const { return Value2VPValue.lookup (V); }
3771
3771
3772
3772
// / Return the list of live-in VPValues available in the VPlan.
3773
- ArrayRef<VPValue *> getLiveIns () const { return VPLiveInsToFree ; }
3773
+ ArrayRef<VPValue *> getLiveIns () const { return VPLiveIns ; }
3774
3774
3775
3775
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3776
3776
// / Print the live-ins of this VPlan to \p O.
0 commit comments