mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-14 05:38:51 +00:00
x86emitter: Comment out unused variables.
cpudetect.cpp -> x86_64_8BITBRANDID and x86_64_12BITBRANDID.
This commit is contained in:
parent
f8fd636eac
commit
0e60733537
@ -193,12 +193,6 @@ void x86capabilities::Identify()
|
|||||||
s32 regs[4];
|
s32 regs[4];
|
||||||
u32 cmds;
|
u32 cmds;
|
||||||
|
|
||||||
//AMD 64 STUFF
|
|
||||||
#ifdef __M_X86_64
|
|
||||||
u32 x86_64_8BITBRANDID;
|
|
||||||
u32 x86_64_12BITBRANDID;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
memzero(VendorName);
|
memzero(VendorName);
|
||||||
cpuid(regs, 0);
|
cpuid(regs, 0);
|
||||||
|
|
||||||
@ -227,7 +221,7 @@ void x86capabilities::Identify()
|
|||||||
FamilyID = (regs[0] >> 8) & 0xf;
|
FamilyID = (regs[0] >> 8) & 0xf;
|
||||||
TypeID = (regs[0] >> 12) & 0x3;
|
TypeID = (regs[0] >> 12) & 0x3;
|
||||||
#ifdef __M_X86_64
|
#ifdef __M_X86_64
|
||||||
x86_64_8BITBRANDID = regs[1] & 0xff;
|
//u32 x86_64_8BITBRANDID = regs[1] & 0xff;
|
||||||
#endif
|
#endif
|
||||||
Flags = regs[3];
|
Flags = regs[3];
|
||||||
Flags2 = regs[2];
|
Flags2 = regs[2];
|
||||||
@ -246,7 +240,7 @@ void x86capabilities::Identify()
|
|||||||
cpuid(regs, 0x80000001);
|
cpuid(regs, 0x80000001);
|
||||||
|
|
||||||
#ifdef __M_X86_64
|
#ifdef __M_X86_64
|
||||||
x86_64_12BITBRANDID = regs[1] & 0xfff;
|
//u32 x86_64_12BITBRANDID = regs[1] & 0xfff;
|
||||||
#endif
|
#endif
|
||||||
EFlags2 = regs[2];
|
EFlags2 = regs[2];
|
||||||
EFlags = regs[3];
|
EFlags = regs[3];
|
||||||
|
Loading…
Reference in New Issue
Block a user