]> git.ipfire.org Git - thirdparty/xz.git/commitdiff
liblzma: crc_clmul.c: Tidy up the location of MSVC pragma.
authorLasse Collin <lasse.collin@tukaani.org>
Fri, 20 Oct 2023 20:19:33 +0000 (23:19 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Wed, 10 Jan 2024 15:19:03 +0000 (17:19 +0200)
It makes no difference in practice.

src/liblzma/check/crc_clmul.c

index 640415e7c1e50ea3f95b587c17e77580fc356164..0c2bdab1886a34aa65f25bb991b25d7de0804ecf 100644 (file)
@@ -365,10 +365,10 @@ lzma_crc64_clmul(const uint8_t *buf, size_t size, uint64_t crc)
        return ~(uint64_t)_mm_extract_epi64(v0, 1);
 #endif
 }
-#endif // HAVE_CHECK_CRC64
-
 
 #if defined(_MSC_VER) && !defined(__INTEL_COMPILER) && !defined(__clang__) \
                && defined(_M_IX86)
 #      pragma optimize("", on)
 #endif
+
+#endif // HAVE_CHECK_CRC64