Commit 20c5200d authored by Michael R. Crusoe's avatar Michael R. Crusoe

avx512/madd: fix native alias arguments for _mm512_madd_epi16

parent cc476f36
......@@ -120,7 +120,7 @@ simde_mm512_madd_epi16 (simde__m512i a, simde__m512i b) {
}
#if defined(SIMDE_X86_AVX512BW_ENABLE_NATIVE_ALIASES)
#undef _mm512_madd_epi16
#define _mm512_madd_epi16(src, k, a, b) simde_mm512_madd_epi16(src, k, a, b)
#define _mm512_madd_epi16(a, b) simde_mm512_madd_epi16(a, b)
#endif
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