Commit 7760aabd authored by Michael R. Crusoe's avatar Michael R. Crusoe Committed by Michael R. Crusoe

GCC AVX512F: SIMDE_BUG_GCC_95399 was fixed in GCC 9.5, 10.4, 11.4, 12+

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105339
parent 436dd4cc
...@@ -1002,7 +1002,10 @@ HEDLEY_DIAGNOSTIC_POP ...@@ -1002,7 +1002,10 @@ HEDLEY_DIAGNOSTIC_POP
# endif # endif
# endif # endif
# define SIMDE_BUG_GCC_95399 # define SIMDE_BUG_GCC_95399
# if !defined(__OPTIMIZE__) # if !defined(__OPTIMIZE__) && !(\
HEDLEY_GCC_VERSION_CHECK(11,4,0) \
|| (HEDLEY_GCC_VERSION_CHECK(10,4,0) && !(HEDLEY_GCC_VERSION_CHECK(11,0,0))) \
|| (HEDLEY_GCC_VERSION_CHECK(9,5,0) && !(HEDLEY_GCC_VERSION_CHECK(10,0,0))))
# define SIMDE_BUG_GCC_105339 # define SIMDE_BUG_GCC_105339
# endif # endif
# elif defined(__clang__) # elif defined(__clang__)
......
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