[libc-commits] [libc] [llvm] [libc][math] Refactor ffma implementation to header-only in src/__support/math folder (PR #175304)

via libc-commits libc-commits at lists.llvm.org
Sat Feb 7 13:03:00 PST 2026


================
@@ -122,6 +122,7 @@ TEST(LlvmLibcSharedMathTest, AllDouble) {
   EXPECT_FP_EQ(0x1p+0, LIBC_NAMESPACE::shared::exp2(0.0));
   EXPECT_FP_EQ(0x1p+0, LIBC_NAMESPACE::shared::exp10(0.0));
   EXPECT_FP_EQ(0x0p+0, LIBC_NAMESPACE::shared::expm1(0.0));
+  EXPECT_FP_EQ(0x0p+0, LIBC_NAMESPACE::shared::ffma(0.0, 0.0, 0.0));
----------------
ProfessionalMenace wrote:

Fixed

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


More information about the libc-commits mailing list