diff --git a/client/hostinfo_win.cpp b/client/hostinfo_win.cpp index 220150e1b8..195e9634ee 100644 --- a/client/hostinfo_win.cpp +++ b/client/hostinfo_win.cpp @@ -670,7 +670,7 @@ int get_cpuid(unsigned int info_type, unsigned int& a, unsigned int& b, unsigned #elif defined(__GNUC__) // GCC compiler - __asm__ __volatile__ ("cpuid": "=a" (ax), "=b" (bx), "=c" (cx), "=d" (dx) : "a" (info_type)); + __asm__ __volatile__ ("cpuid": "=a" (a), "=b" (b), "=c" (c), "=d" (d) : "a" (info_type)); return 0; #else