1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

liblzma: crc_clmul.c: Tidy up the location of MSVC pragma.

It makes no difference in practice.
This commit is contained in:
Lasse Collin 2023-10-20 23:19:33 +03:00
parent 15cf3f04f2
commit 0c7e854ffd

View 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