aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Vectorize/VPlan.h
diff options
context:
space:
mode:
authorFlorian Hahn <flo@fhahn.com>2024-02-19 22:11:50 +0000
committerFlorian Hahn <flo@fhahn.com>2024-02-19 22:11:51 +0000
commit44b17679e354d2f23b8843589629573b3900119f (patch)
treecc6e500c39cb859ae78e409d7d5eccb28ded6bb8 /llvm/lib/Transforms/Vectorize/VPlan.h
parent1f57800fe6ffc1569520e8cc62a740332300e2fa (diff)
downloadllvm-44b17679e354d2f23b8843589629573b3900119f.zip
llvm-44b17679e354d2f23b8843589629573b3900119f.tar.gz
llvm-44b17679e354d2f23b8843589629573b3900119f.tar.bz2
[VPlan] Remove stale comment from VPTransformState::get (NFC)
All values accessed via get are now part of VPTransformState, the ILV reference in the comment has been removed a long time ago. Remove the stale comment.
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/VPlan.h')
-rw-r--r--llvm/lib/Transforms/Vectorize/VPlan.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index 42e3b4a..4f25059 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -261,10 +261,7 @@ struct VPTransformState {
DenseMap<VPValue *, ScalarsPerPartValuesTy> PerPartScalars;
} Data;
- /// Get the generated Value for a given VPValue and a given Part. Note that
- /// as some Defs are still created by ILV and managed in its ValueMap, this
- /// method will delegate the call to ILV in such cases in order to provide
- /// callers a consistent API.
+ /// Get the generated Value for the given VPValue \p Def and the given \p Part.
/// \see set.
Value *get(VPValue *Def, unsigned Part);