[clang] [llvm] Add release note entry for max/min (PR #131977)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 23:06:24 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: YunQiang Su (wzssyqa)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/131977.diff
2 Files Affected:
- (modified) clang/docs/ReleaseNotes.rst (+2)
- (modified) llvm/docs/ReleaseNotes.md (+3)
``````````diff
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index ce4336acb806a..24d5e155919d9 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -146,6 +146,8 @@ C23 Feature Support
better diagnostic behavior for the ``va_start()`` macro in C23 and later.
This also updates the definition of ``va_start()`` in ``<stdarg.h>`` to use
the new builtin. Fixes #GH124031.
+- Standardized fmax/fmaximum/fmaximum_num and fmin/fminimum/fminimum_num builtin support.
+ See `LLVM LangRef <http://llvm.org/docs/LangRef.html#llvm-min-intrinsics-comparation>`.
Non-comprehensive list of changes in this release
-------------------------------------------------
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index b191a840d9803..ebb41af887998 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -65,6 +65,9 @@ Changes to the LLVM IR
* Updated semantics of `llvm.type.checked.load.relative` to match that of
`llvm.load.relative`.
+* Standarized `minnum/minimum/minimumnum` and `minnum/minimum/minimumnum`.
+ See `Min/Max Comparation <https://llvm.org/docs/LangRef.html#llvm-min-intrinsics-comparation>`.
+
Changes to LLVM infrastructure
------------------------------
``````````
</details>
https://github.com/llvm/llvm-project/pull/131977
More information about the llvm-commits
mailing list