sna: Mention if compiled as 64bit as part of the CPU feature detection
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
27c71027b1
commit
1068bf7024
|
|
@ -91,6 +91,10 @@ char *sna_cpu_features_to_string(unsigned features, char *line)
|
|||
{
|
||||
char *ret = line;
|
||||
|
||||
#ifdef __x86_64__
|
||||
line += sprintf (line, ", x86-64");
|
||||
#endif
|
||||
|
||||
if (features & SSE2)
|
||||
line += sprintf (line, ", sse2");
|
||||
if (features & SSE3)
|
||||
|
|
|
|||
Loading…
Reference in New Issue