[Mlir-commits] [mlir] [MLIR][Math] Fix math.ceil expansion to avoid undefined behavior on Inf/NaN (PR #170028)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sat Feb 7 17:59:27 PST 2026
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 origin/main HEAD --extensions cpp -- mlir/lib/Dialect/Math/Transforms/ExpandOps.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/mlir/lib/Dialect/Math/Transforms/ExpandOps.cpp b/mlir/lib/Dialect/Math/Transforms/ExpandOps.cpp
index a541e603e..4fc8071b9 100644
--- a/mlir/lib/Dialect/Math/Transforms/ExpandOps.cpp
+++ b/mlir/lib/Dialect/Math/Transforms/ExpandOps.cpp
@@ -262,8 +262,8 @@ static LogicalResult convertCeilOp(math::CeilOp op, PatternRewriter &rewriter) {
Value unsignedBits = arith::AndIOp::create(b, operandBitcast, cMask);
Value cThreshold = createIntConst(
op->getLoc(), iTy, (uint64_t(bias + mantissaWidth)) << mantissaWidth, b);
- Value isLargeExp =
- arith::CmpIOp::create(b, arith::CmpIPredicate::uge, unsignedBits, cThreshold);
+ Value isLargeExp = arith::CmpIOp::create(b, arith::CmpIPredicate::uge,
+ unsignedBits, cThreshold);
Value isSpecialValOrLargeVal = isLargeExp;
// In FNUZ-suffixed floating point, NaN is represented by a sign bit of 1 and
``````````
</details>
https://github.com/llvm/llvm-project/pull/170028
More information about the Mlir-commits
mailing list