Commit 7d7fdd65 authored by James Almer's avatar James Almer

x86/showcqt: add missing preprocessor checks

Old yasm/nasm versions don't support some of these
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent a04ae469
......@@ -187,9 +187,15 @@ INIT_XMM sse
DECLARE_CQT_CALC
INIT_XMM sse3
DECLARE_CQT_CALC
%if HAVE_AVX_EXTERNAL
INIT_YMM avx
DECLARE_CQT_CALC
%endif
%if HAVE_FMA3_EXTERNAL
INIT_YMM fma3
DECLARE_CQT_CALC
%endif
%if HAVE_FMA4_EXTERNAL
INIT_XMM fma4
DECLARE_CQT_CALC
%endif
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