diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-07-18 13:49:43 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-07-18 13:49:43 +0300 |
commit | 40392c19f71985852d75997f109dea97177d6f3f (patch) | |
tree | d40335484337d3f1596c8f0cdab9926de03434e5 /src | |
parent | xz: Update Authors list in a few files. (diff) | |
download | xz-40392c19f71985852d75997f109dea97177d6f3f.tar.xz |
liblzma: Omit unnecessary parenthesis in a preprocessor directive.
Diffstat (limited to 'src')
-rw-r--r-- | src/liblzma/common/memcmplen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/common/memcmplen.h b/src/liblzma/common/memcmplen.h index 4392c1cf..4d1ef7b4 100644 --- a/src/liblzma/common/memcmplen.h +++ b/src/liblzma/common/memcmplen.h @@ -23,9 +23,9 @@ // on Windows when using an MSVC compatible compiler. The Intel compiler // can use the intrinsics without the header file. #if defined(TUKLIB_FAST_UNALIGNED_ACCESS) \ - && (defined(_MSC_VER) \ + && defined(_MSC_VER) \ && defined(_M_X64) \ - && !defined(__INTEL_COMPILER)) + && !defined(__INTEL_COMPILER) # include <intrin.h> #endif |