[llvm] a29ed04 - IndVarSimplify: strip redundant getDataLayout (NFC) (#125546)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 11:28:48 PST 2025
Author: Ramkumar Ramachandra
Date: 2025-02-03T19:28:44Z
New Revision: a29ed04fe61b9d0d040865c0a762f461f95fbed7
URL: https://github.com/llvm/llvm-project/commit/a29ed04fe61b9d0d040865c0a762f461f95fbed7
DIFF: https://github.com/llvm/llvm-project/commit/a29ed04fe61b9d0d040865c0a762f461f95fbed7.diff
LOG: IndVarSimplify: strip redundant getDataLayout (NFC) (#125546)
DataLayout is already available as a member variable.
Added:
Modified:
llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp b/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
index bfd618ccdd3795..9619dfdbf41231 100644
--- a/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
+++ b/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
@@ -1460,7 +1460,6 @@ bool IndVarSimplify::canonicalizeExitCondition(Loop *L) {
if (!match(LHS, m_ZExt(m_Value(LHSOp))) || !ICmp->isSigned())
continue;
- const DataLayout &DL = ExitingBB->getDataLayout();
const unsigned InnerBitWidth = DL.getTypeSizeInBits(LHSOp->getType());
const unsigned OuterBitWidth = DL.getTypeSizeInBits(RHS->getType());
auto FullCR = ConstantRange::getFull(InnerBitWidth);
@@ -1536,8 +1535,6 @@ bool IndVarSimplify::canonicalizeExitCondition(Loop *L) {
DeadInsts.push_back(LHS);
};
-
- const DataLayout &DL = ExitingBB->getDataLayout();
const unsigned InnerBitWidth = DL.getTypeSizeInBits(LHSOp->getType());
const unsigned OuterBitWidth = DL.getTypeSizeInBits(RHS->getType());
auto FullCR = ConstantRange::getFull(InnerBitWidth);
More information about the llvm-commits
mailing list