aboutsummaryrefslogtreecommitdiff
path: root/math/sincosf.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2023-01-25 21:31:42 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-01-25 21:31:42 +0000
commit8a481eb48cf7ace04026cbe776d65492f89a6d7d (patch)
tree945eb1832687ad5eb97c433013617dbe107718e5 /math/sincosf.c
parent0bc581b0e4f509c96bffa7af329087ae2b4bfb97 (diff)
parent8783f524beaad825ac1bddeb93cef35b5f793513 (diff)
downloadarm-optimized-routines-8a481eb48cf7ace04026cbe776d65492f89a6d7d.tar.gz
Upgrade ARM-software/optimized-routines to v23.01 am: 62662f115a am: 8783f524be
Original change: https://android-review.googlesource.com/c/platform/external/arm-optimized-routines/+/2402215 Change-Id: Ief5438cf89d86c43e5f52d5e48b882bacb945170 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'math/sincosf.c')
-rw-r--r--math/sincosf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/math/sincosf.c b/math/sincosf.c
index 9746f1c..446f21d 100644
--- a/math/sincosf.c
+++ b/math/sincosf.c
@@ -1,8 +1,8 @@
/*
* Single-precision sin/cos function.
*
- * Copyright (c) 2018-2019, Arm Limited.
- * SPDX-License-Identifier: MIT
+ * Copyright (c) 2018-2021, Arm Limited.
+ * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
*/
#include <stdint.h>
@@ -22,7 +22,7 @@ sincosf (float y, float *sinp, float *cosp)
int n;
const sincos_t *p = &__sincosf_table[0];
- if (abstop12 (y) < abstop12 (pio4))
+ if (abstop12 (y) < abstop12 (pio4f))
{
double x2 = x * x;