From: Nathan Moinvaziri Date: Fri, 31 Jan 2020 22:34:32 +0000 (-0800) Subject: Use value already stored in wsize. X-Git-Tag: 1.9.9-b1~370 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=840e931ad341169830733a35387c14c6559f2829;p=thirdparty%2Fzlib-ng.git Use value already stored in wsize. --- diff --git a/arch/x86/slide_sse.c b/arch/x86/slide_sse.c index 8358ced0c..c7d3b1249 100644 --- a/arch/x86/slide_sse.c +++ b/arch/x86/slide_sse.c @@ -17,7 +17,7 @@ ZLIB_INTERNAL void slide_hash_sse2(deflate_state *s) { Pos *p; unsigned n; unsigned wsize = s->w_size; - const __m128i xmm_wsize = _mm_set1_epi16(s->w_size); + const __m128i xmm_wsize = _mm_set1_epi16(wsize); n = s->hash_size; p = &s->head[n] - 8;