Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
450B

  1. diff --git a/test/utils-prng.c b/test/utils-prng.c
  2. index 0cf53dd..ecadbdc 100644
  3. --- a/test/utils-prng.c
  4. +++ b/test/utils-prng.c
  5. @@ -83,7 +83,7 @@ store_rand_128_data (void *addr, prng_rand_128_data_t *d, int aligned)
  6. }
  7. else
  8. {
  9. -#ifdef __SSE2__
  10. +#if defined(__SSE2__) && !defined(__EMSCRIPTEN__)
  11. /* workaround for http://gcc.gnu.org/PR55614 */
  12. _mm_storeu_si128 (addr, _mm_loadu_si128 ((__m128i *)d));
  13. return;