[llvm] [VPlan] Track VPValue names in VPlan. (PR #81411)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 12 09:01:12 PDT 2024
================
@@ -1373,32 +1362,73 @@ VPInterleavedAccessInfo::VPInterleavedAccessInfo(VPlan &Plan,
visitRegion(Plan.getVectorLoopRegion(), Old2New, IAI);
}
-void VPSlotTracker::assignSlot(const VPValue *V) {
- if (V->getUnderlyingValue())
+void VPSlotTracker::assignSlotOrName(const VPValue *V) {
+ if (auto *UV = V->getUnderlyingValue()) {
----------------
fhahn wrote:
Updated, thanks!
https://github.com/llvm/llvm-project/pull/81411
More information about the llvm-commits
mailing list