[llvm] IRBuilder: Add FMFSource parameter to CreateMaxNum/CreateMinNum (PR #129173)

via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 01:46:46 PST 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 88ff6070a5211e0eebe9b614efbeae8082866d1a de755178c19711c1ea3a25e544c236632bc1c29d --extensions h -- llvm/include/llvm/IR/IRBuilder.h
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/include/llvm/IR/IRBuilder.h b/llvm/include/llvm/IR/IRBuilder.h
index c37a8a98e1..c08bffca3d 100644
--- a/llvm/include/llvm/IR/IRBuilder.h
+++ b/llvm/include/llvm/IR/IRBuilder.h
@@ -1009,7 +1009,8 @@ public:
                       FMFSource FMFSource = {}) {
     if (IsFPConstrained) {
       return CreateConstrainedFPUnroundedBinOp(
-          Intrinsic::experimental_constrained_minnum, LHS, RHS, FMFSource, Name);
+          Intrinsic::experimental_constrained_minnum, LHS, RHS, FMFSource,
+          Name);
     }
 
     return CreateBinaryIntrinsic(Intrinsic::minnum, LHS, RHS, FMFSource, Name);
@@ -1020,7 +1021,8 @@ public:
                       FMFSource FMFSource = {}) {
     if (IsFPConstrained) {
       return CreateConstrainedFPUnroundedBinOp(
-          Intrinsic::experimental_constrained_maxnum, LHS, RHS, FMFSource, Name);
+          Intrinsic::experimental_constrained_maxnum, LHS, RHS, FMFSource,
+          Name);
     }
 
     return CreateBinaryIntrinsic(Intrinsic::maxnum, LHS, RHS, FMFSource, Name);

``````````

</details>


https://github.com/llvm/llvm-project/pull/129173


More information about the llvm-commits mailing list