Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SSE detection on non-AVX CPUs #135

Merged
merged 13 commits into from
Oct 9, 2020
Prev Previous commit
Store DWORD instead unsigned long for x86 tests
  • Loading branch information
gchatelet committed Oct 9, 2020
commit 6a671e593ba5c394c4563c52ab3284ab618d91ff
2 changes: 1 addition & 1 deletion test/cpuinfo_x86_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class FakeCpu {
std::set<std::string> darwin_sysctlbyname_;
#endif // CPU_FEATURES_OS_DARWIN
#if defined(CPU_FEATURES_OS_WINDOWS)
std::set<unsigned long> windows_isprocessorfeaturepresent_;
std::set<DWORD> windows_isprocessorfeaturepresent_;
#endif // CPU_FEATURES_OS_WINDOWS
uint32_t xcr0_eax_;
};
Expand Down