aboutsummaryrefslogtreecommitdiff
path: root/contrib/arm-optimized-routines/math/v_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/arm-optimized-routines/math/v_log.h')
-rw-r--r--contrib/arm-optimized-routines/math/v_log.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/arm-optimized-routines/math/v_log.h b/contrib/arm-optimized-routines/math/v_log.h
deleted file mode 100644
index bcc2fa6fa930..000000000000
--- a/contrib/arm-optimized-routines/math/v_log.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Declarations for double-precision log(x) vector function.
- *
- * Copyright (c) 2019, Arm Limited.
- * SPDX-License-Identifier: MIT
- */
-
-#include "v_math.h"
-#if WANT_VMATH
-
-#define V_LOG_TABLE_BITS 7
-
-extern const struct v_log_data
-{
- f64_t invc;
- f64_t logc;
-} __v_log_data[1 << V_LOG_TABLE_BITS] HIDDEN;
-#endif