Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/include/compat/immintrin.h
6175 views
1
/*
2
* Copyright 2020 The Emscripten Authors. All rights reserved.
3
* Emscripten is available under two separate licenses, the MIT license and the
4
* University of Illinois/NCSA Open Source License. Both these licenses can be
5
* found in the LICENSE file.
6
*/
7
#ifndef __emscripten_immintrin_h__
8
#define __emscripten_immintrin_h__
9
10
#ifdef __SSE__
11
#include <xmmintrin.h>
12
#endif
13
14
#ifdef __SSE2__
15
#include <emmintrin.h>
16
#endif
17
18
#ifdef __SSE3__
19
#include <pmmintrin.h>
20
#endif
21
22
#ifdef __SSSE3__
23
#include <tmmintrin.h>
24
#endif
25
26
#ifdef __SSE4_1__
27
#include <smmintrin.h>
28
#endif
29
30
#ifdef __SSE4_2__
31
#include <nmmintrin.h>
32
#endif
33
34
#ifdef __AVX__
35
#include <avxintrin.h>
36
#endif
37
38
#ifdef __AVX2__
39
#include <avx2intrin.h>
40
#endif
41
42
#endif /* __emscripten_immintrin_h__ */
43
44