[libc-commits] [libc] [libc] updated remaining yaml functions (PR #102705)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Tue Oct 8 10:06:57 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
----------------
nickdesaulniers wrote:

but some of these still aren't added yet.

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


More information about the libc-commits mailing list