Commit 985c2710 authored by Michael Catanzaro's avatar Michael Catanzaro Committed by Michael R. Crusoe

Don't use _Float16 on s390x

Clang does not support _Float16 on s390x

https://clang.llvm.org/docs/LanguageExtensions.html#half-precision-floating-point
parent 78783046
......@@ -71,6 +71,7 @@ SIMDE_BEGIN_DECLS_
#elif !defined(__EMSCRIPTEN__) && !(defined(__clang__) && defined(SIMDE_ARCH_POWER)) && \
!(defined(HEDLEY_MSVC_VERSION) && defined(__clang__)) && \
!(defined(SIMDE_ARCH_MIPS) && defined(__clang__)) && \
!(defined(SIMDE_ARCH_ZARCH) && defined(__clang__)) && \
!(defined(__clang__) && defined(SIMDE_ARCH_RISCV64)) && ( \
defined(SIMDE_X86_AVX512FP16_NATIVE) || \
(defined(SIMDE_ARCH_X86_SSE2) && HEDLEY_GCC_VERSION_CHECK(12,0,0)) || \
......
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