diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/test-float-vlen16.h | 4 | ||||
-rw-r--r-- | math/test-float-vlen4.h | 4 | ||||
-rw-r--r-- | math/test-float-vlen8.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/math/test-float-vlen16.h b/math/test-float-vlen16.h index 5c0a7a4..008e15e 100644 --- a/math/test-float-vlen16.h +++ b/math/test-float-vlen16.h @@ -58,8 +58,8 @@ FLOAT scalar_func (FLOAT x) \ } // Wrapper from scalar 2 argument function to vector one. -#define VECTOR_WRAPPER_ff(scalar_func, vector_func) \ -extern VEC_TYPE vector_func (VEC_TYPE); \ +#define VECTOR_WRAPPER_ff(scalar_func, vector_func) \ +extern VEC_TYPE vector_func (VEC_TYPE, VEC_TYPE); \ FLOAT scalar_func (FLOAT x, FLOAT y) \ { \ int i; \ diff --git a/math/test-float-vlen4.h b/math/test-float-vlen4.h index 09485bc..eaf4b4b 100644 --- a/math/test-float-vlen4.h +++ b/math/test-float-vlen4.h @@ -58,8 +58,8 @@ FLOAT scalar_func (FLOAT x) \ } // Wrapper from scalar 2 argument function to vector one. -#define VECTOR_WRAPPER_ff(scalar_func, vector_func) \ -extern VEC_TYPE vector_func (VEC_TYPE); \ +#define VECTOR_WRAPPER_ff(scalar_func, vector_func) \ +extern VEC_TYPE vector_func (VEC_TYPE, VEC_TYPE); \ FLOAT scalar_func (FLOAT x, FLOAT y) \ { \ int i; \ diff --git a/math/test-float-vlen8.h b/math/test-float-vlen8.h index d309931..1a2eb52 100644 --- a/math/test-float-vlen8.h +++ b/math/test-float-vlen8.h @@ -58,8 +58,8 @@ FLOAT scalar_func (FLOAT x) \ } // Wrapper from scalar 2 argument function to vector one. -#define VECTOR_WRAPPER_ff(scalar_func, vector_func) \ -extern VEC_TYPE vector_func (VEC_TYPE); \ +#define VECTOR_WRAPPER_ff(scalar_func, vector_func) \ +extern VEC_TYPE vector_func (VEC_TYPE, VEC_TYPE); \ FLOAT scalar_func (FLOAT x, FLOAT y) \ { \ int i; \ |