-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[libc] Add definitions for totalordermag(,f, l, f128), dsqrt(l, f128), fsqrt(, l, f128) to math.yaml. #103494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -214,6 +214,20 @@ functions: | |
arguments: | ||
- type: long double | ||
- type: long double | ||
- name: dsqrtl | ||
standards: | ||
- stdc | ||
return_type: double | ||
arguments: | ||
- type: long double | ||
- name: dsqrtf128 | ||
standards: | ||
- llvm_libc_ext | ||
return_type: double | ||
arguments: | ||
- type: float128 | ||
- type: float128 | ||
guard: LIBC_TYPES_HAS_FLOAT128 | ||
- name: erff | ||
standards: | ||
- stdc | ||
|
@@ -1195,6 +1209,25 @@ functions: | |
- type: long double | ||
- type: int | ||
- type: unsigned int | ||
- name: fsqrt | ||
lntue marked this conversation as resolved.
Show resolved
Hide resolved
|
||
standards: | ||
- stdc | ||
return_type: float type | ||
arguments: | ||
- type: double | ||
- name: fsqrtl | ||
standards: | ||
- stdc | ||
return_type: float | ||
arguments: | ||
- type: long double | ||
- name: fsqrtf128 | ||
lntue marked this conversation as resolved.
Show resolved
Hide resolved
|
||
standards: | ||
- llvm_libc_ext | ||
return_type: float | ||
arguments: | ||
- type: float128 | ||
guard: LIBC_TYPES_HAS_FLOAT128 | ||
- name: fsub | ||
standards: | ||
- stdc | ||
|
@@ -2323,6 +2356,35 @@ functions: | |
arguments: | ||
- type: const long double * | ||
- type: const long double * | ||
- name: totalordermag | ||
standards: | ||
- stdc | ||
return_type: int | ||
arguments: | ||
- type: double * | ||
- type: double * | ||
- name: totalordermagf | ||
standards: | ||
- stdc | ||
return_type: int | ||
arguments: | ||
- type: float * | ||
- type: float * | ||
- name: totalordermagl | ||
lntue marked this conversation as resolved.
Show resolved
Hide resolved
|
||
standards: | ||
- stdc | ||
return_type: int | ||
arguments: | ||
- type: long double * | ||
- type: long double * | ||
- name: totalordermagf128 | ||
standards: | ||
- stdc | ||
return_type: int | ||
arguments: | ||
- type: float128 * | ||
- type: float128 * | ||
guard: LIBC_TYPES_HAS_FLOAT128 | ||
Comment on lines
+2359
to
+2387
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I opened #103935. |
||
- name: totalordermagf16 | ||
standards: | ||
- stdc | ||
|
Uh oh!
There was an error while loading. Please reload this page.