Skip to content

Commit

Permalink
Fixed 32-bit build
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 26, 2009
1 parent e4cf4c3 commit 5b08052
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpuinfo/SDL_cpuinfo.c
Expand Up @@ -161,7 +161,7 @@ static __inline__ int CPU_getCPUIDFeatures(void)
" movl %%edi,%%ebx\n"
: "=m" (features)
:
: "%eax", "%ebx", "%ecx", "%edx", "%edi"
: "%eax", "%ecx", "%edx", "%edi"
);
#elif defined(__GNUC__) && defined(__x86_64__)
__asm__ (
Expand Down Expand Up @@ -230,7 +230,7 @@ static __inline__ int CPU_getCPUIDFeaturesExt(void)
" movl %%edi,%%ebx\n"
: "=m" (features)
:
: "%eax", "%ebx", "%ecx", "%edx", "%edi"
: "%eax", "%ecx", "%edx", "%edi"
);
#elif defined(__GNUC__) && defined (__x86_64__)
__asm__ (
Expand Down

0 comments on commit 5b08052

Please sign in to comment.