[llvm] [VPlan] Remove redundant printing final in VPlan::execute (PR #121048)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 24 02:19:40 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-vectorizers
@llvm/pr-subscribers-llvm-transforms
Author: LiqinWeng (LiqinWeng)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/121048.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/Vectorize/VPlan.cpp (-5)
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.cpp b/llvm/lib/Transforms/Vectorize/VPlan.cpp
index 71f43abe534ec0..9a082921d4f7f2 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlan.cpp
@@ -1002,11 +1002,6 @@ void VPlan::execute(VPTransformState *State) {
setName("Final VPlan");
LLVM_DEBUG(dump());
- LLVM_DEBUG(dbgs() << "Executing best plan with VF=" << State->VF
- << ", UF=" << getUF() << '\n');
- setName("Final VPlan");
- LLVM_DEBUG(dump());
-
// Disconnect the middle block from its single successor (the scalar loop
// header) in both the CFG and DT. The branch will be recreated during VPlan
// execution.
``````````
</details>
https://github.com/llvm/llvm-project/pull/121048
More information about the llvm-commits
mailing list