Declare EAX as input register for CPUID.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@310 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-08-25 10:21:19 +00:00
parent 8a06c0fdc7
commit 1a2e350158
1 changed files with 6 additions and 2 deletions

View File

@ -31,7 +31,9 @@ static inline void do_cpuid(unsigned int *eax, unsigned int *ebx,
: "=a" (*eax),
"=b" (*ebx),
"=c" (*ecx),
"=d" (*edx));
"=d" (*edx)
: "a" (*eax)
);
#else
// Note: EBX is reserved on Mac OS X and in PIC on Linux, so it has to be
// restored at the end of the asm block.
@ -43,7 +45,9 @@ static inline void do_cpuid(unsigned int *eax, unsigned int *ebx,
: "=a" (*eax),
"=r" (*ebx),
"=c" (*ecx),
"=d" (*edx));
"=d" (*edx)
: "a" (*eax)
);
#endif
}