diff options
Diffstat (limited to 'sysdeps/aarch64/fpu/vecmath_config.h')
-rw-r--r-- | sysdeps/aarch64/fpu/vecmath_config.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/aarch64/fpu/vecmath_config.h b/sysdeps/aarch64/fpu/vecmath_config.h index e7d30b477f..0abfd8b701 100644 --- a/sysdeps/aarch64/fpu/vecmath_config.h +++ b/sysdeps/aarch64/fpu/vecmath_config.h @@ -42,8 +42,10 @@ extern const struct v_log_data /* Shared data for vector log and log-derived routines (e.g. asinh). */ double poly[V_LOG_POLY_ORDER - 1]; double ln2; - double invc[1 << V_LOG_TABLE_BITS]; - double logc[1 << V_LOG_TABLE_BITS]; + struct + { + double invc, logc; + } table[1 << V_LOG_TABLE_BITS]; } __v_log_data attribute_hidden; #define V_EXP_TABLE_BITS 7 |