mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
dsp/cpu: add include for _xgetbv() w/MSVS
explicitly add immintrin.h instead of transitively picking it up via windows.h presumably. makes the code easier to move around. Change-Id: If70d5143ac94fc331da763ce034358858e460e06
This commit is contained in:
parent
9e92b6eac6
commit
b6c0428e8c
@ -56,6 +56,7 @@ static WEBP_INLINE uint64_t xgetbv(void) {
|
||||
return ((uint64_t)edx << 32) | eax;
|
||||
}
|
||||
#elif defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 160040219 // >= VS2010 SP1
|
||||
#include <immintrin.h>
|
||||
#define xgetbv() _xgetbv(0)
|
||||
#elif defined(_MSC_VER) && defined(_M_IX86)
|
||||
static WEBP_INLINE uint64_t xgetbv(void) {
|
||||
|
Loading…
Reference in New Issue
Block a user