Path: blob/main/system/include/compat/immintrin.h
6175 views
/*1* Copyright 2020 The Emscripten Authors. All rights reserved.2* Emscripten is available under two separate licenses, the MIT license and the3* University of Illinois/NCSA Open Source License. Both these licenses can be4* found in the LICENSE file.5*/6#ifndef __emscripten_immintrin_h__7#define __emscripten_immintrin_h__89#ifdef __SSE__10#include <xmmintrin.h>11#endif1213#ifdef __SSE2__14#include <emmintrin.h>15#endif1617#ifdef __SSE3__18#include <pmmintrin.h>19#endif2021#ifdef __SSSE3__22#include <tmmintrin.h>23#endif2425#ifdef __SSE4_1__26#include <smmintrin.h>27#endif2829#ifdef __SSE4_2__30#include <nmmintrin.h>31#endif3233#ifdef __AVX__34#include <avxintrin.h>35#endif3637#ifdef __AVX2__38#include <avx2intrin.h>39#endif4041#endif /* __emscripten_immintrin_h__ */424344