[llvm] 81896f8 - [NFC] Remove unused OrigLoopID vars
Jordan Rupprecht via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 11 07:51:47 PST 2022
Author: Jordan Rupprecht
Date: 2022-11-11T07:51:40-08:00
New Revision: 81896f88cef4cfe1cf982250601a0c954344e1e8
URL: https://github.com/llvm/llvm-project/commit/81896f88cef4cfe1cf982250601a0c954344e1e8
DIFF: https://github.com/llvm/llvm-project/commit/81896f88cef4cfe1cf982250601a0c954344e1e8.diff
LOG: [NFC] Remove unused OrigLoopID vars
Added:
Modified:
llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 41b12a6adf3d..153b102c340f 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -3269,9 +3269,6 @@ InnerLoopVectorizer::createVectorizedLoopSkeleton() {
...
*/
- // Get the metadata of the original loop before it gets modified.
- MDNode *OrigLoopID = OrigLoop->getLoopID();
-
// Workaround! Compute the trip count of the original loop and cache it
// before we start modifying the CFG. This code has a systemic problem
// wherein it tries to run analysis over partially constructed IR; this is
@@ -7711,8 +7708,6 @@ Value *InnerLoopUnroller::getBroadcastInstrs(Value *V) { return V; }
/// depicted in https://llvm.org/docs/Vectorizers.html#epilogue-vectorization.
std::pair<BasicBlock *, Value *>
EpilogueVectorizerMainLoop::createEpilogueVectorizedLoopSkeleton() {
- MDNode *OrigLoopID = OrigLoop->getLoopID();
-
// Workaround! Compute the trip count of the original loop and cache it
// before we start modifying the CFG. This code has a systemic problem
// wherein it tries to run analysis over partially constructed IR; this is
@@ -7839,7 +7834,6 @@ EpilogueVectorizerMainLoop::emitIterationCountCheck(BasicBlock *Bypass,
/// depicted in https://llvm.org/docs/Vectorizers.html#epilogue-vectorization.
std::pair<BasicBlock *, Value *>
EpilogueVectorizerEpilogueLoop::createEpilogueVectorizedLoopSkeleton() {
- MDNode *OrigLoopID = OrigLoop->getLoopID();
createVectorLoopSkeleton("vec.epilog.");
// Now, compare the remaining count and if there aren't enough iterations to
More information about the llvm-commits
mailing list