emulation.h 315 B

12345678910111213
  1. // Copyright 2009-2020 Intel Corporation
  2. // SPDX-License-Identifier: Apache-2.0
  3. #pragma once
  4. // According to https://emscripten.org/docs/porting/simd.html, _MM_SET_EXCEPTION_MASK and
  5. // _mm_setcsr are unavailable in WebAssembly.
  6. #define _MM_SET_EXCEPTION_MASK(x)
  7. __forceinline void _mm_setcsr(unsigned int)
  8. {
  9. }