diff options
author | Tue Ly <lntue.h@gmail.com> | 2023-01-27 23:06:11 -0500 |
---|---|---|
committer | Tue Ly <lntue@google.com> | 2023-02-01 11:35:15 -0500 |
commit | 9b30f6b6d76fcd4887c692ab6c182975f3390dca (patch) | |
tree | 5f0fa4f867ae996846a7db242e048e82f62ce32d /libc/spec | |
parent | 47fbb247dab24e10c5b582e47c5a038e34d75473 (diff) | |
download | llvm-9b30f6b6d76fcd4887c692ab6c182975f3390dca.tar.gz |
[libc][math] Implement acoshf function correctly rounded to all rounding modes.
Implement acoshf function correctly rounded to all rounding modes.
Reviewed By: zimmermann6
Differential Revision: https://reviews.llvm.org/D142781
Diffstat (limited to 'libc/spec')
-rw-r--r-- | libc/spec/stdc.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/spec/stdc.td b/libc/spec/stdc.td index 7712c1a42623..11d2c702a7ca 100644 --- a/libc/spec/stdc.td +++ b/libc/spec/stdc.td @@ -492,6 +492,7 @@ def StdC : StandardSpec<"stdc"> { FunctionSpec<"asin", RetValSpec<DoubleType>, [ArgSpec<DoubleType>]>, FunctionSpec<"atanf", RetValSpec<FloatType>, [ArgSpec<FloatType>]>, + FunctionSpec<"acoshf", RetValSpec<FloatType>, [ArgSpec<FloatType>]>, FunctionSpec<"asinhf", RetValSpec<FloatType>, [ArgSpec<FloatType>]>, FunctionSpec<"atanhf", RetValSpec<FloatType>, [ArgSpec<FloatType>]>, ] |