diff --git a/src/corelib/tools/qsimd.cpp b/src/corelib/tools/qsimd.cpp index 6a790a432d..5d95d7c232 100644 --- a/src/corelib/tools/qsimd.cpp +++ b/src/corelib/tools/qsimd.cpp @@ -244,7 +244,7 @@ static void xgetbv(int in, uint &eax, uint &edx) eax = result; edx = result >> 32; #elif defined(Q_CC_GNU) - asm ("xgetbv" + asm (".byte 0x0F, 0x01, 0xD0" // xgetbv instruction : "=a" (eax), "=d" (edx) : "c" (in)); #endif