summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Hahn <flo@fhahn.com>2024-02-23 16:54:28 +0000
committerFlorian Hahn <flo@fhahn.com>2024-02-23 16:54:30 +0000
commit0b01320d28235ff54a98681414c7dd6024d348a7 (patch)
treef0ea7e90f8162d2def91158c785561865a84392d
parent5840aa95e3c2d93f400e638e7cbf167a693c75f5 (diff)
[VPlan] Remove unused VPTransformState::CanonicalIV (NFCI).
Clean up unused member variable.
-rw-r--r--llvm/lib/Transforms/Vectorize/VPlan.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index 240d4bd628b0..a2a203c42005 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -385,9 +385,6 @@ struct VPTransformState {
VPValue2ValueTy VPValue2Value;
- /// Hold the canonical scalar IV of the vector loop (start=0, step=VF*UF).
- Value *CanonicalIV = nullptr;
-
/// Hold a pointer to InnerLoopVectorizer to reuse its IR generation methods.
InnerLoopVectorizer *ILV;