[llvm] [IR] Add helper `CmpPredicate::dropSameSign` (PR #134071)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 04:51:55 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp,h -- llvm/include/llvm/IR/CmpPredicate.h llvm/lib/Analysis/ScalarEvolution.cpp llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp
index ff8f8f3d9..5f7364456 100644
--- a/llvm/lib/Analysis/ScalarEvolution.cpp
+++ b/llvm/lib/Analysis/ScalarEvolution.cpp
@@ -11792,8 +11792,7 @@ bool ScalarEvolution::isImpliedCond(CmpPredicate Pred, const SCEV *LHS,
const SCEV *TruncFoundLHS = getTruncateExpr(FoundLHS, NarrowType);
const SCEV *TruncFoundRHS = getTruncateExpr(FoundRHS, NarrowType);
// We cannot preserve samesign after truncation.
- if (isImpliedCondBalancedTypes(Pred, LHS, RHS,
- FoundPred.dropSameSign(),
+ if (isImpliedCondBalancedTypes(Pred, LHS, RHS, FoundPred.dropSameSign(),
TruncFoundLHS, TruncFoundRHS, CtxI))
return true;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/134071
More information about the llvm-commits
mailing list