Committed as obvious.
2008-12-08 Dmitry G. Gorbachev <d.g.gorbachev@gmail.com> * cpu_features.c (__cpu_features_init): Remove erroneous ';'.
This commit is contained in:
parent
d27ebea923
commit
cf2f4a6aef
|
@ -1,3 +1,7 @@
|
|||
2008-12-08 Dmitry G. Gorbachev <d.g.gorbachev@gmail.com>
|
||||
|
||||
* cpu_features.c (__cpu_features_init): Remove erroneous ';'.
|
||||
|
||||
2008-10-28 Keith Marshall <keithmarshall@users.sourceforge.net>
|
||||
|
||||
Correct some binary distribution packaging defects.
|
||||
|
|
|
@ -71,7 +71,7 @@ void __cpu_features_init (void)
|
|||
if (eax < 0x80000001)
|
||||
return;
|
||||
__cpuid (0x80000001, eax, ebx, ecx, edx);
|
||||
if (edx & EDX_3DNOW);
|
||||
if (edx & EDX_3DNOW)
|
||||
__cpu_features |= _CRT_3DNOW;
|
||||
if (edx & EDX_3DNOWP)
|
||||
__cpu_features |= _CRT_3DNOWP;
|
||||
|
|
Loading…
Reference in New Issue