From 592211cecda57bf31463afa91d8cc70e0a6615c9 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 7 Apr 2015 14:45:21 +0200 Subject: [PATCH] activate __get_cpuid on all non X64 platform, fixes #1193 --- algorithms/crc32_processor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/crc32_processor.hpp b/algorithms/crc32_processor.hpp index b9444e7b6..a31b4ad23 100644 --- a/algorithms/crc32_processor.hpp +++ b/algorithms/crc32_processor.hpp @@ -116,7 +116,7 @@ class IteratorbasedCRC32 return ecx; } -#if defined(__MINGW64__) || defined(_MSC_VER) +#if defined(__MINGW64__) || defined(_MSC_VER) || !defined(__x86_64__) inline void __get_cpuid(int param, unsigned *eax, unsigned *ebx, unsigned *ecx, unsigned *edx) const {