[libc] [llvm] [libc][math][c23] Add fmaf16 C23 math function. (PR #130757)

via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 16 14:55:46 PDT 2025


================
@@ -3562,6 +3562,19 @@ add_fp_unittest(
     libc.src.__support.macros.properties.types
 )
 
+add_fp_unittest(
+  fmaf16_test
+  SUITE
+    libc-math-smoke-tests
+  SRCS
+    fmaf16_test.cpp
+  HDRS
+    FmaTest.h
+  DEPENDS
+    libc.src.math.fmaf16
+    libc.src.__support.macros.properties.types
+)
----------------
overmighty wrote:

```suggestion
  DEPENDS
    libc.src.math.fmaf16
    libc.src.__support.CPP.type_traits
    libc.src.__support.FPUtil.cast
    libc.src.__support.macros.properties.types
)
```

Or maybe we should fix this now that we have `fputil::cast`: https://github.com/llvm/llvm-project/blob/3e6f618e86f5fbad2c2d5802416ec3d3366a2837/libc/test/src/math/smoke/FmaTest.h#L93-L98

Then FmaTest.h would only need `libc.src.__support.FPUtil.cast`.

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


More information about the llvm-commits mailing list