aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utils/cpuid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/cpuid.cpp b/src/utils/cpuid.cpp
index 2d3b5d92c..448054c49 100644
--- a/src/utils/cpuid.cpp
+++ b/src/utils/cpuid.cpp
@@ -17,10 +17,10 @@
#include <intrin.h>
#define CALL_CPUID(type, out) do { __cpuid((int*)out, type); } while(0)
-#elif defined(BOTAN_BUILD_COMPILER_IS_ICC)
+#elif defined(BOTAN_BUILD_COMPILER_IS_INTEL)
#include <ia32intrin.h>
- #define CALL_CPUID(type, out) do { __cpuid(out, type) } while(0);
+ #define CALL_CPUID(type, out) do { __cpuid(out, type); } while(0);
#elif defined(BOTAN_BUILD_COMPILER_IS_GCC)