mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
With clang 13.0.0, and Apple clang version 13.1.6 (clang-1316.0.21.2),
the following code fails to compile with `-std=c++20 -O3 -msse3`:
#include <immintrin.h>
auto test (__m128 a)
{
return _mm_hadd_ps (_mm_hadd_ps (a, a), a);
}
|
||
|---|---|---|
| .. | ||
| juce_avx_SIMDNativeOps.cpp | ||
| juce_avx_SIMDNativeOps.h | ||
| juce_fallback_SIMDNativeOps.h | ||
| juce_neon_SIMDNativeOps.cpp | ||
| juce_neon_SIMDNativeOps.h | ||
| juce_sse_SIMDNativeOps.cpp | ||
| juce_sse_SIMDNativeOps.h | ||