Bug 732985 - Followup 2: Only compile HasCPUIDBit when using SSE2. r=bustage

This commit is contained in:
Bas Schouten 2012-05-08 04:52:06 +02:00
Родитель 05cdbfe46e
Коммит 3e2f7a1d08
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -139,6 +139,7 @@ __cpuid(int CPUInfo[4], int InfoType)
#endif
#endif
#ifdef USE_SSE2
static bool
HasCPUIDBit(unsigned int level, CPUIDRegister reg, unsigned int bit)
{
@ -150,7 +151,7 @@ HasCPUIDBit(unsigned int level, CPUIDRegister reg, unsigned int bit)
__cpuid((int *)regs, level);
return !!(unsigned(regs[reg]) & bit);
}
#endif
#endif
namespace mozilla {