mirror of https://github.com/PCSX2/pcsx2.git
Emitter: Remove old unused code
Irrelevant and outdated code that is no longer needed.
This commit is contained in:
parent
752594f69a
commit
4d418d1bb5
|
@ -176,17 +176,6 @@ void x86capabilities::CountCores()
|
||||||
cpuid(regs, 0x80000000);
|
cpuid(regs, 0x80000000);
|
||||||
cmds = regs[0];
|
cmds = regs[0];
|
||||||
|
|
||||||
// detect multicore for AMD cpu
|
|
||||||
|
|
||||||
if ((cmds >= 0x80000008) && (VendorID == x86Vendor_AMD))
|
|
||||||
{
|
|
||||||
// AMD note: they don't support hyperthreading, but they like to flag this true
|
|
||||||
// anyway. Let's force-unflag it until we come up with a better solution.
|
|
||||||
// (note: seems to affect some Phenom II's only? -- Athlon X2's and PhenomI's do
|
|
||||||
// not seem to do this) --air
|
|
||||||
hasMultiThreading = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// This will assign values into LogicalCores and PhysicalCores
|
// This will assign values into LogicalCores and PhysicalCores
|
||||||
CountLogicalCores();
|
CountLogicalCores();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue