[clang] [llvm] Intrinsic: introduce minimumnum and maximumnum (PR #93841)

Jakub Kuderski via cfe-commits cfe-commits at lists.llvm.org
Mon Jun 10 07:12:19 PDT 2024


================
@@ -1449,6 +1449,16 @@ inline APFloat minimum(const APFloat &A, const APFloat &B) {
     return A.isNegative() ? A : B;
   return B < A ? B : A;
 }
+LLVM_READONLY
----------------
kuhar wrote:

Please add and an empty line before this function and document its semantics.

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


More information about the cfe-commits mailing list