Commit 0bd19a99 authored by Russell Graves's avatar Russell Graves Committed by Michael R. Crusoe

Fix vqdmulhs_s32 native alias.

Function prototype has two parameters:
simde_vqdmulhs_s32(int32_t a, int32_t b)

Native define only had one.  This does not build.
Tests only ever called with the simde_ prefix.
parent 62f40d4b
...@@ -53,7 +53,7 @@ simde_vqdmulhs_s32(int32_t a, int32_t b) { ...@@ -53,7 +53,7 @@ simde_vqdmulhs_s32(int32_t a, int32_t b) {
} }
#if defined(SIMDE_ARM_NEON_A64V8_ENABLE_NATIVE_ALIASES) #if defined(SIMDE_ARM_NEON_A64V8_ENABLE_NATIVE_ALIASES)
#undef vqdmulhs_s32 #undef vqdmulhs_s32
#define vqdmulhs_s32(a) simde_vqdmulhs_s32((a)) #define vqdmulhs_s32(a, b) simde_vqdmulhs_s32((a), (b))
#endif #endif
SIMDE_FUNCTION_ATTRIBUTES SIMDE_FUNCTION_ATTRIBUTES
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment