From 726ce582abb800a809ac144f50a7aa20e3fadcef Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Fri, 13 Nov 2015 14:48:25 +0100 Subject: remove SSE detection code (but keep SSE2) For corner case CPUs out there that support SSE and not SSE2 it makes more sense to use the "fallback" code path instead of writing a SSE only version. For this reason detecting SSE is not relevant anymore - so removing it. Change-Id: I3f1425af2cb5cdf9fba699e2996014598a15b5c1 --- include/tools/cpuid.hxx | 1 - 1 file changed, 1 deletion(-) (limited to 'include/tools') diff --git a/include/tools/cpuid.hxx b/include/tools/cpuid.hxx index 316e656c06cb..244512989cb6 100644 --- a/include/tools/cpuid.hxx +++ b/include/tools/cpuid.hxx @@ -18,7 +18,6 @@ namespace tools { namespace cpuid { - TOOLS_DLLPUBLIC bool hasSSE(); TOOLS_DLLPUBLIC bool hasSSE2(); } } -- cgit