[clang] [llvm] Add release note entry for max/min (PR #131977)

YunQiang Su via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 23:05:49 PDT 2025


https://github.com/wzssyqa created https://github.com/llvm/llvm-project/pull/131977

None

>From 737498ab2c540251f94ff7e07426d434b28d8b34 Mon Sep 17 00:00:00 2001
From: YunQiang Su <yunqiang at isrc.iscas.ac.cn>
Date: Wed, 19 Mar 2025 14:05:05 +0800
Subject: [PATCH] Add release note entry for max/min

---
 clang/docs/ReleaseNotes.rst | 2 ++
 llvm/docs/ReleaseNotes.md   | 3 +++
 2 files changed, 5 insertions(+)

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
 ------------------------------
 



More information about the llvm-commits mailing list