[libc-commits] [libc] [llvm] [libc][math] Refactor bf16divl to header-only (#181025) (PR #181535)
via libc-commits
libc-commits at lists.llvm.org
Wed Feb 18 03:50:41 PST 2026
================
@@ -2675,6 +2675,16 @@ libc_support_library(
],
)
+libc_support_library(
+ name = "__support_math_bf16divl",
+ hdrs = ["src/__support/math/bf16divl.h"],
+ deps = [
+ ":__support_fputil_basic_operations",
+ ":__support_fputil_bfloat16",
+ ":__support_macros_config",
+ ],
+)
+
----------------
AbdallahRashed wrote:
it is the same, the difference is that in bazel __support_fputil_basic_operations
includes both BasicOperations.h AND div.h
in CMake, basic_operations only includes BasicOperations.h
all other PRs have the same
https://github.com/llvm/llvm-project/pull/181535
More information about the libc-commits
mailing list