aboutsummaryrefslogtreecommitdiff
path: root/contrib/arm-optimized-routines/math/cosf.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/arm-optimized-routines/math/cosf.c')
-rw-r--r--contrib/arm-optimized-routines/math/cosf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/arm-optimized-routines/math/cosf.c b/contrib/arm-optimized-routines/math/cosf.c
index f29f19474e23..6293ce8f1b7d 100644
--- a/contrib/arm-optimized-routines/math/cosf.c
+++ b/contrib/arm-optimized-routines/math/cosf.c
@@ -1,8 +1,8 @@
/*
* Single-precision 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 @@ cosf (float y)
int n;
const sincos_t *p = &__sincosf_table[0];
- if (abstop12 (y) < abstop12 (pio4))
+ if (abstop12 (y) < abstop12 (pio4f))
{
double x2 = x * x;