Index: source/cpu_id.cc |
diff --git a/source/cpu_id.cc b/source/cpu_id.cc |
index e58a42cd0bac5b6c177d376077b686c232532c91..ff7bdbd92d03bfbcb063e5dbd0512a737edb32e0 100644 |
--- a/source/cpu_id.cc |
+++ b/source/cpu_id.cc |
@@ -120,7 +120,6 @@ int GetXCR0() { |
#if (_MSC_FULL_VER >= 160040219) |
xcr0 = (uint32)(_xgetbv(0)); // VS2010 SP1 required. |
#elif defined(__i386__) || defined(__x86_64__) |
- uint32 xcr0 = 0u; |
asm(".byte 0x0f, 0x01, 0xd0" : "=a" (xcr0) : "c" (0) : "%edx"); |
#endif // defined(__i386__) || defined(__x86_64__) |
return xcr0; |