Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 17, 2004
1 parent 1c20ebf commit ff31549
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cpuinfo/SDL_cpuinfo.c
Expand Up @@ -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"
);
Expand Down Expand Up @@ -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"
);
Expand Down Expand Up @@ -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"
);
Expand Down

0 comments on commit ff31549

Please sign in to comment.