[llvm] [KnownFPClass] Infer signs of finite nonzero fdiv results (PR #214912)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 7 19:02:45 PDT 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 -- llvm/lib/Analysis/ValueTracking.cpp llvm/lib/CodeGen/GlobalISel/GISelValueTracking.cpp llvm/lib/Support/KnownFPClass.cpp llvm/unittests/CodeGen/GlobalISel/KnownFPClassTest.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/llvm/unittests/CodeGen/GlobalISel/KnownFPClassTest.cpp b/llvm/unittests/CodeGen/GlobalISel/KnownFPClassTest.cpp
index e63bcb2e5..8083f0a11 100644
--- a/llvm/unittests/CodeGen/GlobalISel/KnownFPClassTest.cpp
+++ b/llvm/unittests/CodeGen/GlobalISel/KnownFPClassTest.cpp
@@ -1194,8 +1194,7 @@ TEST_F(AArch64GISelMITest, TestFPClassFDivSqrt) {
GISelValueTracking Info(*MF);
KnownFPClass Known = Info.computeKnownFPClass(SrcReg);
- EXPECT_EQ(fcAllFlags & ~(fcNegNormal | fcNegSubnormal),
- Known.KnownFPClasses);
+ EXPECT_EQ(fcAllFlags & ~(fcNegNormal | fcNegSubnormal), Known.KnownFPClasses);
EXPECT_EQ(std::nullopt, Known.SignBit);
}
@@ -1223,8 +1222,7 @@ TEST_F(AArch64GISelMITest, TestFPClassFDivNegSqrtNeg) {
GISelValueTracking Info(*MF);
KnownFPClass Known = Info.computeKnownFPClass(SrcReg, fcPositive);
- EXPECT_EQ(fcAllFlags & ~(fcPosNormal | fcPosSubnormal),
- Known.KnownFPClasses);
+ EXPECT_EQ(fcAllFlags & ~(fcPosNormal | fcPosSubnormal), Known.KnownFPClasses);
EXPECT_EQ(std::nullopt, Known.SignBit);
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/214912
More information about the llvm-commits
mailing list