Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

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 2232b0e commit 80182e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpuinfo/SDL_cpuinfo.c
Expand Up @@ -166,7 +166,7 @@ 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 @@ -238,7 +238,7 @@ 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 80182e6

Please sign in to comment.