[llvm] [SCEV] Strip dead gcd function (NFC) (PR #217299)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 19 03:58:38 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-analysis
Author: Ramkumar Ramachandra (artagnon)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/217299.diff
1 Files Affected:
- (modified) llvm/lib/Analysis/ScalarEvolution.cpp (-14)
``````````diff
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp
index 52a03d2cad62d..d8ba1fec1b838 100644
--- a/llvm/lib/Analysis/ScalarEvolution.cpp
+++ b/llvm/lib/Analysis/ScalarEvolution.cpp
@@ -3695,20 +3695,6 @@ const SCEV *ScalarEvolution::getUDivExpr(SCEVUse LHS, SCEVUse RHS) {
return getOrCreateUDivExpr(LHS, RHS);
}
-APInt gcd(const SCEVConstant *C1, const SCEVConstant *C2) {
- APInt A = C1->getAPInt().abs();
- APInt B = C2->getAPInt().abs();
- uint32_t ABW = A.getBitWidth();
- uint32_t BBW = B.getBitWidth();
-
- if (ABW > BBW)
- B = B.zext(ABW);
- else if (ABW < BBW)
- A = A.zext(BBW);
-
- return APIntOps::GreatestCommonDivisor(std::move(A), std::move(B));
-}
-
/// Get a canonical unsigned division expression, or something simpler if
/// possible. There is no representation for an exact udiv in SCEV IR, but we
/// can attempt to optimize it prior to construction.
``````````
</details>
https://github.com/llvm/llvm-project/pull/217299
More information about the llvm-commits
mailing list