Skip to content

Commit

Permalink
SIMDe: patch
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed May 5, 2023
1 parent 6ef2a28 commit 826cb4f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/simde/simde/simde-arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
#if !defined(SIMDE_ARCH_H)
#define SIMDE_ARCH_H

#include "hedley.h"

/* Alpha
<https://en.wikipedia.org/wiki/DEC_Alpha> */
#if defined(__alpha__) || defined(__alpha) || defined(_M_ALPHA)
Expand Down Expand Up @@ -331,7 +333,9 @@
# if defined(__VPCLMULQDQ__)
# define SIMDE_ARCH_X86_VPCLMULQDQ 1
# endif
# if defined(__F16C__) || ( HEDLEY_MSVC_VERSION_CHECK(19,30,0) && defined(SIMDE_ARCH_X86_AVX2) )
# if defined(__F16C__) || \
(defined(HEDLEY_MSVC_VERSION) && HEDLEY_MSVC_VERSION_CHECK(19,30,0) \
&& defined(SIMDE_ARCH_X86_AVX2) )
# define SIMDE_ARCH_X86_F16C 1
# endif
#endif
Expand Down

0 comments on commit 826cb4f

Please sign in to comment.