[llvm] [ConstraintElim] Add range support for Constraint Elimination (PR #118458)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 3 03:57:35 PST 2024
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 e776484a02194986028424ef5a5a782de0a681c2 c91056746908f60185defbab77037f486a729ef1 --extensions cpp -- llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Scalar/ConstraintElimination.cpp b/llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
index 61695b1a6b..dd27ca468f 100644
--- a/llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
+++ b/llvm/lib/Transforms/Scalar/ConstraintElimination.cpp
@@ -1619,8 +1619,8 @@ void ConstraintInfo::addFact(CmpInst::Predicate Pred, Value *A, Value *B,
int64_t MinVal = CR->getSignedMin().getSExtValue();
if (MaxVal != MaxConstraintValue) {
ConstraintTy VarPos(
- SmallVector<int64_t, 8>(Value2Index.size() + 1, 0), true,
- false, false);
+ SmallVector<int64_t, 8>(Value2Index.size() + 1, 0), true, false,
+ false);
VarPos.Coefficients[0] = MaxVal;
VarPos.Coefficients[Value2Index[V]] = 1;
CSToUse.addVariableRow(VarPos.Coefficients);
@@ -1629,8 +1629,8 @@ void ConstraintInfo::addFact(CmpInst::Predicate Pred, Value *A, Value *B,
}
if (MinVal != MinSignedConstraintValue) {
ConstraintTy VarPos(
- SmallVector<int64_t, 8>(Value2Index.size() + 1, 0), true,
- false, false);
+ SmallVector<int64_t, 8>(Value2Index.size() + 1, 0), true, false,
+ false);
VarPos.Coefficients[0] = -MinVal;
VarPos.Coefficients[Value2Index[V]] = -1;
CSToUse.addVariableRow(VarPos.Coefficients);
``````````
</details>
https://github.com/llvm/llvm-project/pull/118458
More information about the llvm-commits
mailing list