From ac941c03e86dc6024c4b37e79c4804ba3caf5f6b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 26 Sep 2009 10:05:07 +0000 Subject: [PATCH] Fixed bug #734 Nicholas Phillips 2009-04-26 21:34:05 PDT I am using x64 Linux (using Intel Core 2 DUO), and I have noticed that there is an error in SDL_cpuinfo.c, function CPU_getCPUIDFeaturesExt for my platform. --- src/cpuinfo/SDL_cpuinfo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cpuinfo/SDL_cpuinfo.c b/src/cpuinfo/SDL_cpuinfo.c index 2bdd1ac11..ff8f35643 100644 --- a/src/cpuinfo/SDL_cpuinfo.c +++ b/src/cpuinfo/SDL_cpuinfo.c @@ -161,7 +161,7 @@ static __inline__ int CPU_getCPUIDFeatures(void) " movl %%edi,%%ebx\n" : "=m" (features) : - : "%eax", "%ecx", "%edx", "%edi" + : "%eax", "%ebx", "%ecx", "%edx", "%edi" ); #elif defined(__GNUC__) && defined(__x86_64__) __asm__ ( @@ -178,7 +178,7 @@ static __inline__ int CPU_getCPUIDFeatures(void) " movq %%rdi,%%rbx\n" : "=m" (features) : - : "%rax", "%rcx", "%rdx", "%rdi" + : "%rax", "%rbx", "%rcx", "%rdx", "%rdi" ); #elif (defined(_MSC_VER) && defined(_M_IX86)) || defined(__WATCOMC__) __asm { @@ -230,7 +230,7 @@ static __inline__ int CPU_getCPUIDFeaturesExt(void) " movl %%edi,%%ebx\n" : "=m" (features) : - : "%eax", "%ecx", "%edx", "%edi" + : "%eax", "%ebx", "%ecx", "%edx", "%edi" ); #elif defined(__GNUC__) && defined (__x86_64__) __asm__ ( @@ -246,7 +246,7 @@ static __inline__ int CPU_getCPUIDFeaturesExt(void) " movq %%rdi,%%rbx\n" : "=m" (features) : - : "%rax", "%rcx", "%rdx", "%rdi" + : "%rax", "%rbx", "%rcx", "%rdx", "%rdi" ); #elif (defined(_MSC_VER) && defined(_M_IX86)) || defined(__WATCOMC__) __asm {