[libc-commits] [libc] [libc] Add fminf128 and fmaxf128 implementations for Linux x86_64. (PR #79307)

via libc-commits libc-commits at lists.llvm.org
Thu Jan 25 07:14:49 PST 2024


================
@@ -380,10 +380,12 @@ def StdC : StandardSpec<"stdc"> {
           FunctionSpec<"fmin", RetValSpec<DoubleType>, [ArgSpec<DoubleType>, ArgSpec<DoubleType>]>,
           FunctionSpec<"fminf", RetValSpec<FloatType>, [ArgSpec<FloatType>, ArgSpec<FloatType>]>,
           FunctionSpec<"fminl", RetValSpec<LongDoubleType>, [ArgSpec<LongDoubleType>, ArgSpec<LongDoubleType>]>,
+          FunctionSpec<"fminf128", RetValSpec<Float128Type>, [ArgSpec<Float128Type>, ArgSpec<Float128Type>]>,
----------------
lntue wrote:

The second input arg is of `IntType`.

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


More information about the libc-commits mailing list