client, FreeBSD: report "pni" instead of "sse3"

This commit is contained in:
David Anderson 2013-08-08 11:52:01 -07:00
parent 48d995061f
commit 9607f3342c
1 changed files with 1 additions and 1 deletions

View File

@ -685,7 +685,7 @@ void use_cpuid(HOST_INFO& host) {
capabilities[0] = '\0';
if (hasSSE) strcat(capabilities, "sse ");
if (hasSSE2) strcat(capabilities, "sse2 ");
if (hasSSE3) strcat(capabilities, "sse3 ");
if (hasSSE3) strcat(capabilities, "pni ");
if (has3DNow) strcat(capabilities, "3dnow ");
if (has3DNowExt) strcat(capabilities, "3dnowext ");
if (hasMMX) strcat(capabilities, "mmx ");