[llvm] 6a030b3 - [VPlan] Remove unused VPlanIngredient (NFC).
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 15 03:53:57 PDT 2025
Author: Florian Hahn
Date: 2025-03-15T10:52:43Z
New Revision: 6a030b300547233dc5fb023a893737fa75bf60dc
URL: https://github.com/llvm/llvm-project/commit/6a030b300547233dc5fb023a893737fa75bf60dc
DIFF: https://github.com/llvm/llvm-project/commit/6a030b300547233dc5fb023a893737fa75bf60dc.diff
LOG: [VPlan] Remove unused VPlanIngredient (NFC).
VPlanIngredient is not used anymore, remove it.
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlan.cpp
llvm/lib/Transforms/Vectorize/VPlan.h
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.cpp b/llvm/lib/Transforms/Vectorize/VPlan.cpp
index 0ffcf81f3032b..38eba370d6d81 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlan.cpp
@@ -1363,23 +1363,6 @@ void VPlanPrinter::dumpRegion(const VPRegionBlock *Region) {
dumpEdges(Region);
}
-void VPlanIngredient::print(raw_ostream &O) const {
- if (auto *Inst = dyn_cast<Instruction>(V)) {
- if (!Inst->getType()->isVoidTy()) {
- Inst->printAsOperand(O, false);
- O << " = ";
- }
- O << Inst->getOpcodeName() << " ";
- unsigned E = Inst->getNumOperands();
- if (E > 0) {
- Inst->getOperand(0)->printAsOperand(O, false);
- for (unsigned I = 1; I < E; ++I)
- Inst->getOperand(I)->printAsOperand(O << ", ", false);
- }
- } else // !Inst
- V->printAsOperand(O, false);
-}
-
#endif
/// Returns true if there is a vector loop region and \p VPV is defined in a
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index 2205e87d2bc17..f2ca33c581433 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -3706,19 +3706,6 @@ class VPlan {
};
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
-struct VPlanIngredient {
- const Value *V;
-
- VPlanIngredient(const Value *V) : V(V) {}
-
- void print(raw_ostream &O) const;
-};
-
-inline raw_ostream &operator<<(raw_ostream &OS, const VPlanIngredient &I) {
- I.print(OS);
- return OS;
-}
-
inline raw_ostream &operator<<(raw_ostream &OS, const VPlan &Plan) {
Plan.print(OS);
return OS;
More information about the llvm-commits
mailing list