[libc-commits] [libc] [libc] updated remaining yaml functions (PR #102705)
via libc-commits
libc-commits at lists.llvm.org
Tue Oct 8 10:21:33 PDT 2024
================
@@ -192,13 +199,53 @@ functions:
return_type: float
arguments:
- type: float
+ - name: daddf128
+ standards:
+ - llvm_libc_ext
+ return_type: double
+ arguments:
+ - type: float128
+ - type: float128
+ guard: LIBC_TYPES_HAS_FLOAT128
+ - name: daddl
+ standards:
+ - stdc
+ return_type: double
+ arguments:
+ - type: long double
+ - type: long double
+ - name: ddivf128
+ standards:
+ - llvm_libc_ext
+ return_type: double
+ arguments:
+ - type: float128
+ - type: float128
+ guard: LIBC_TYPES_HAS_FLOAT128
----------------
aaryanshukla wrote:
These are some of the basic math functions I completed but did not update the header files. I'd assume these should be added to the corresponding yaml file as well.
https://github.com/llvm/llvm-project/pull/102705
More information about the libc-commits
mailing list