[llvm] f9b2497 - [VPlan] Use const for VPBasicBlock* in key in VPBB2IRBB (NFC).
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 12:45:32 PST 2025
Author: Florian Hahn
Date: 2025-02-28T20:45:11Z
New Revision: f9b249705598b31d2313458207668eeae896e4c6
URL: https://github.com/llvm/llvm-project/commit/f9b249705598b31d2313458207668eeae896e4c6
DIFF: https://github.com/llvm/llvm-project/commit/f9b249705598b31d2313458207668eeae896e4c6.diff
LOG: [VPlan] Use const for VPBasicBlock* in key in VPBB2IRBB (NFC).
This allows queries in places where only a const pointer to VPBasiBlocks
is available.
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlanHelpers.h
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlanHelpers.h b/llvm/lib/Transforms/Vectorize/VPlanHelpers.h
index 8e777ecbc0be9..fd6db4417ad10 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanHelpers.h
+++ b/llvm/lib/Transforms/Vectorize/VPlanHelpers.h
@@ -317,7 +317,7 @@ struct VPTransformState {
/// A mapping of each VPBasicBlock to the corresponding BasicBlock. In case
/// of replication, maps the BasicBlock of the last replica created.
- SmallDenseMap<VPBasicBlock *, BasicBlock *> VPBB2IRBB;
+ SmallDenseMap<const VPBasicBlock *, BasicBlock *> VPBB2IRBB;
/// Updater for the DominatorTree.
DomTreeUpdater DTU;
More information about the llvm-commits
mailing list