We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 029bece commit c0bf4b2Copy full SHA for c0bf4b2
llvm/lib/Transforms/Vectorize/VPlanValue.h
@@ -175,12 +175,7 @@ class VPValue {
175
/// Returns the underlying IR value, if this VPValue is defined outside the
176
/// scope of VPlan. Returns nullptr if the VPValue is defined by a VPDef
177
/// inside a VPlan.
178
- Value *getLiveInIRValue() {
179
- assert(isLiveIn() &&
180
- "VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
181
- return getUnderlyingValue();
182
- }
183
- const Value *getLiveInIRValue() const {
+ Value *getLiveInIRValue() const {
184
assert(isLiveIn() &&
185
"VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
186
return getUnderlyingValue();
0 commit comments