/* * Copyright 2020 The Emscripten Authors. All rights reserved. * Emscripten is available under two separate licenses, the MIT license and the * University of Illinois/NCSA Open Source License. Both these licenses can be * found in the LICENSE file. */ #ifndef __emscripten_immintrin_h__ #define __emscripten_immintrin_h__ #ifdef __AVX__ #include #endif #ifdef __SSE4_2__ #include #endif #ifdef __SSE4_1__ #include #endif #ifdef __SSSE3__ #include #endif #ifdef __SSE3__ #include #endif #ifdef __SSE2__ #include #endif #ifdef __SSE__ #include #endif #endif /* __emscripten_immintrin_h__ */