From 05ef2c1337a2c38b99738074c83babf2dee9400b Mon Sep 17 00:00:00 2001 From: gnick79 Date: Mon, 7 Feb 2011 20:19:21 +0000 Subject: [PATCH] =?UTF-8?q?-=20again=20CPUID=20:=C2=B0D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7101 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/CPUDetect.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/Src/CPUDetect.cpp b/Source/Core/Common/Src/CPUDetect.cpp index b7e85a7301..4549f61103 100644 --- a/Source/Core/Common/Src/CPUDetect.cpp +++ b/Source/Core/Common/Src/CPUDetect.cpp @@ -39,10 +39,10 @@ static inline void do_cpuid(unsigned int *eax, unsigned int *ebx, // Note: EBX is reserved on Mac OS X and in PIC on Linux, so it has to // restored at the end of the asm block. __asm__( - "pushl %%rbx;" + "push %%rbx;" "cpuid;" "movl %%rbx,%1;" - "popl %%rbx;" + "pop %%rbx;" : "=a" (*eax), "=r" (*ebx), "=c" (*ecx),