[libc-commits] [libc] [libc][math] implemented dadd and ddiv (PR #100456)
via libc-commits
libc-commits at lists.llvm.org
Wed Jul 24 15:20:38 PDT 2024
================
@@ -129,6 +129,58 @@ add_entrypoint_object(
libc.src.__support.FPUtil.nearest_integer_operations
)
+add_entrypoint_object(
+ daddl
+ SRCS
+ daddl.cpp
+ HDRS
+ ../daddl.h
+ COMPILE_OPTIONS
+ -O3
+ DEPENDS
+ libc.src.__support.macros.properties.types
+ libc.src.__support.FPUtil.generic.add_sub
+
+)
+
+add_entrypoint_object(
+ daddf128
+ SRCS
+ daddf128.cpp
+ HDRS
+ ../daddf128.h
+ COMPILE_OPTIONS
+ -O3
+ DEPENDS
+ libc.src.__support.macros.properties.types
+ libc.src.__support.FPUtil.generic.add_sub
+)
+
+add_entrypoint_object(
+ ddivl
+ SRCS
+ ddivl.cpp
+ HDRS
+ ../ddivl.h
+ COMPILE_OPTIONS
+ -O3
+ DEPENDS
+ libc.src.__support.macros.properties.types
+ libc.src.__support.FPUtil.generic.div
----------------
overmighty wrote:
`ddivl` doesn't use `float128`.
```suggestion
DEPENDS
libc.src.__support.FPUtil.generic.div
```
https://github.com/llvm/llvm-project/pull/100456
More information about the libc-commits
mailing list