Commit 82be3395 authored by Chris Bielow's avatar Chris Bielow Committed by Michael R. Crusoe

fix SIMDE_ARCH_X86_SSE4_2 define

when using `/arch=AVX` or similar then SSE4.2 does not get activated (on MSVC at least, but should be similar on g++/clang)

This PR fixes this.
parent 38580983
...@@ -269,7 +269,7 @@ ...@@ -269,7 +269,7 @@
# if !defined(SIMDE_ARCH_X86_SSE4_1) # if !defined(SIMDE_ARCH_X86_SSE4_1)
# define SIMDE_ARCH_X86_SSE4_1 1 # define SIMDE_ARCH_X86_SSE4_1 1
# endif # endif
# if !defined(SIMDE_ARCH_X86_SSE4_1) # if !defined(SIMDE_ARCH_X86_SSE4_2)
# define SIMDE_ARCH_X86_SSE4_2 1 # define SIMDE_ARCH_X86_SSE4_2 1
# endif # endif
# endif # 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