We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e62b4 commit b35ae3bCopy full SHA for b35ae3b
2 files changed
deps/zlib/contrib/optimizations/chunkcopy.h
@@ -29,6 +29,8 @@
29
#include <arm_neon.h>
30
typedef uint8x16_t z_vec128i_t;
31
#elif defined(INFLATE_CHUNK_SIMD_SSE2)
32
+// TODO(raisinten): When https://github.com/nodejs/node/pull/33044 lands,
33
+// remove the next line and add `-msse2` to the command line options.
34
#pragma GCC target ("sse2")
35
#include <emmintrin.h>
36
typedef __m128i z_vec128i_t;
deps/zlib/fill_window_sse.c
@@ -9,6 +9,8 @@
9
* For conditions of distribution and use, see copyright notice in zlib.h
10
*/
11
12
13
14
15
#include <immintrin.h>
16
#include "deflate.h"
0 commit comments