- added detection of a few x86 extended CPU instructions
i hope this will make some people a bit happier
This commit is contained in:
parent
64e6bfcabd
commit
a7e97daa86
2 changed files with 31 additions and 3 deletions
|
|
@ -252,6 +252,9 @@ FString DumpCPUInfo(const CPUInfo *cpu)
|
|||
if (cpu->bSSSE3) out += (" SSSE3");
|
||||
if (cpu->bSSE41) out += (" SSE4.1");
|
||||
if (cpu->bSSE42) out += (" SSE4.2");
|
||||
if (cpu->bAVX) out += (" AVX");
|
||||
if (cpu->bF16C) out += (" F16C");
|
||||
if (cpu->bFMA3) out += (" FMA3");
|
||||
if (cpu->b3DNow) out += (" 3DNow!");
|
||||
if (cpu->b3DNowPlus) out += (" 3DNow!+");
|
||||
if (cpu->HyperThreading) out += (" HyperThreading");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue