Commit 64e04065 authored by Sam Lantinga's avatar Sam Lantinga

*** empty log message ***

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40785
parent 2767c4d6
...@@ -59,7 +59,7 @@ static __inline__ int CPU_haveCPUID() ...@@ -59,7 +59,7 @@ static __inline__ int CPU_haveCPUID()
" movl $1,%0 # We have CPUID support \n" " movl $1,%0 # We have CPUID support \n"
"1: \n" "1: \n"
"pop %%ecx\n" "pop %%ecx\n"
: "=r" (has_CPUID) : "=m" (has_CPUID)
: :
: "%eax", "%ecx" : "%eax", "%ecx"
); );
...@@ -102,7 +102,7 @@ static __inline__ int CPU_getCPUIDFeatures() ...@@ -102,7 +102,7 @@ static __inline__ int CPU_getCPUIDFeatures()
"pop %%edx\n" "pop %%edx\n"
"pop %%ecx\n" "pop %%ecx\n"
"pop %%ebx\n" "pop %%ebx\n"
: "=r" (features) : "=m" (features)
: :
: "%eax", "%ebx", "%ecx", "%edx" : "%eax", "%ebx", "%ecx", "%edx"
); );
...@@ -162,7 +162,7 @@ static __inline__ int CPU_have3DNow() ...@@ -162,7 +162,7 @@ static __inline__ int CPU_have3DNow()
"pop %%edx\n" "pop %%edx\n"
"pop %%ecx\n" "pop %%ecx\n"
"pop %%ebx\n" "pop %%ebx\n"
: "=r" (has_3DNow) : "=m" (has_3DNow)
: :
: "%eax", "%ebx", "%ecx", "%edx" : "%eax", "%ebx", "%ecx", "%edx"
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment