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:
Danny Smith 2008-12-09 02:42:21 +00:00
parent d27ebea923
commit cf2f4a6aef
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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;