[llvm] c0bf4b2 - [VPlan] Remove unneeded VPValue::getLiveInIRValue() const (NFC).

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 09:01:26 PST 2025


Author: Florian Hahn
Date: 2025-02-28T17:01:19Z
New Revision: c0bf4b2c5778056de0949aceba2cf9e26bed2f24

URL: https://github.com/llvm/llvm-project/commit/c0bf4b2c5778056de0949aceba2cf9e26bed2f24
DIFF: https://github.com/llvm/llvm-project/commit/c0bf4b2c5778056de0949aceba2cf9e26bed2f24.diff

LOG: [VPlan] Remove unneeded VPValue::getLiveInIRValue() const (NFC).

The accessor is not needed/used.

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VPlanValue.h

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlanValue.h b/llvm/lib/Transforms/Vectorize/VPlanValue.h
index a058b2a121d59..0a59b137bbd79 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanValue.h
+++ b/llvm/lib/Transforms/Vectorize/VPlanValue.h
@@ -175,12 +175,7 @@ class VPValue {
   /// Returns the underlying IR value, if this VPValue is defined outside the
   /// scope of VPlan. Returns nullptr if the VPValue is defined by a VPDef
   /// inside a VPlan.
-  Value *getLiveInIRValue() {
-    assert(isLiveIn() &&
-           "VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
-    return getUnderlyingValue();
-  }
-  const Value *getLiveInIRValue() const {
+  Value *getLiveInIRValue() const {
     assert(isLiveIn() &&
            "VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
     return getUnderlyingValue();


        


More information about the llvm-commits mailing list