@@ -3565,7 +3565,7 @@ class VPlan {
35653565
35663566 // / Contains all the external definitions created for this VPlan. External
35673567 // / definitions are VPValues that hold a pointer to their underlying IR.
3568- SmallVector<VPValue *, 16 > VPLiveInsToFree ;
3568+ SmallVector<VPValue *, 16 > VPLiveIns ;
35693569
35703570 // / Mapping from SCEVs to the VPValues representing their expansions.
35713571 // / NOTE: This mapping is temporary and will be removed once all users have
@@ -3754,7 +3754,7 @@ class VPlan {
37543754 assert (V && " Trying to get or add the VPValue of a null Value" );
37553755 if (!Value2VPValue.count (V)) {
37563756 VPValue *VPV = new VPValue (V);
3757- VPLiveInsToFree .push_back (VPV);
3757+ VPLiveIns .push_back (VPV);
37583758 assert (VPV->isLiveIn () && " VPV must be a live-in." );
37593759 assert (!Value2VPValue.count (V) && " Value already exists in VPlan" );
37603760 Value2VPValue[V] = VPV;
@@ -3770,7 +3770,7 @@ class VPlan {
37703770 VPValue *getLiveIn (Value *V) const { return Value2VPValue.lookup (V); }
37713771
37723772 // / 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 ; }
37743774
37753775#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
37763776 // / Print the live-ins of this VPlan to \p O.
0 commit comments