From d5ec6433ebc7ead0a58eb2d6cd5d51ea1f672691 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 17 Jan 2004 20:37:06 +0000 Subject: [PATCH] *** empty log message *** --- src/cpuinfo/SDL_cpuinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpuinfo/SDL_cpuinfo.c b/src/cpuinfo/SDL_cpuinfo.c index 1c42511e8..dba6bcb99 100644 --- a/src/cpuinfo/SDL_cpuinfo.c +++ b/src/cpuinfo/SDL_cpuinfo.c @@ -59,7 +59,7 @@ static __inline__ int CPU_haveCPUID() " movl $1,%0 # We have CPUID support \n" "1: \n" "pop %%ecx\n" - : "=r" (has_CPUID) + : "=m" (has_CPUID) : : "%eax", "%ecx" ); @@ -102,7 +102,7 @@ static __inline__ int CPU_getCPUIDFeatures() "pop %%edx\n" "pop %%ecx\n" "pop %%ebx\n" - : "=r" (features) + : "=m" (features) : : "%eax", "%ebx", "%ecx", "%edx" ); @@ -162,7 +162,7 @@ static __inline__ int CPU_have3DNow() "pop %%edx\n" "pop %%ecx\n" "pop %%ebx\n" - : "=r" (has_3DNow) + : "=m" (has_3DNow) : : "%eax", "%ebx", "%ecx", "%edx" );