about summary refs log tree commit diff
path: root/sysdeps/aarch64/fpu/vecmath_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/aarch64/fpu/vecmath_config.h')
-rw-r--r--sysdeps/aarch64/fpu/vecmath_config.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/sysdeps/aarch64/fpu/vecmath_config.h b/sysdeps/aarch64/fpu/vecmath_config.h
index 62f71f57f3..409c0c9bd9 100644
--- a/sysdeps/aarch64/fpu/vecmath_config.h
+++ b/sysdeps/aarch64/fpu/vecmath_config.h
@@ -84,4 +84,32 @@ extern const struct v_log10_data
   } table[1 << V_LOG10_TABLE_BITS];
 } __v_log10_data attribute_hidden;
 
+extern const struct erff_data
+{
+  struct
+  {
+    float erf, scale;
+  } tab[513];
+} __erff_data attribute_hidden;
+
+extern const struct sv_erff_data
+{
+  float erf[513];
+  float scale[513];
+} __sv_erff_data attribute_hidden;
+
+extern const struct erf_data
+{
+  struct
+  {
+    double erf, scale;
+  } tab[769];
+} __erf_data attribute_hidden;
+
+extern const struct sv_erf_data
+{
+  double erf[769];
+  double scale[769];
+} __sv_erf_data attribute_hidden;
+
 #endif