[llvm] [VPlan] Add VPSymbolicValueSC for typed VPValues w/o underlying IR value (PR #130507)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 12:18:14 PDT 2025


================
@@ -86,14 +91,18 @@ class VPValue {
 
 public:
   /// Return the underlying Value attached to this VPValue.
-  Value *getUnderlyingValue() const { return UnderlyingVal; }
+  Value *getUnderlyingValue() const {
+    return SubclassID == VPSymbolicValueSC ? nullptr : UnderlyingVal;
----------------
fhahn wrote:

Done thanks!

https://github.com/llvm/llvm-project/pull/130507


More information about the llvm-commits mailing list