mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
tuklib_integer: New Intel C compiler needs immintrin.h.
Thanks to Melanie Blower (Intel) for the patch.
This commit is contained in:
parent
a0ee1afbd9
commit
713bbc1a80
1 changed files with 11 additions and 0 deletions
|
@ -98,6 +98,17 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////
|
||||||
|
// Compiler-specific features //
|
||||||
|
////////////////////////////////
|
||||||
|
|
||||||
|
// Newer Intel C compilers require immintrin.h for _bit_scan_reverse()
|
||||||
|
// and such functions.
|
||||||
|
#if defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 1500)
|
||||||
|
# include <immintrin.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
///////////////////
|
///////////////////
|
||||||
// Byte swapping //
|
// Byte swapping //
|
||||||
///////////////////
|
///////////////////
|
||||||
|
|
Loading…
Reference in a new issue