commit 93dd8ac34d9d01f8b6d84af418a7f4473150c599
parent ec753ef94dc5894c180939e207f170e5e09cd539
Author: [email protected] <[email protected]>
Date: Thu, 3 Nov 2016 07:29:53 +0300
Fix cpu_name function
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/base/platform.hpp b/include/kfr/base/platform.hpp
@@ -87,7 +87,7 @@ constexpr auto cpu_all = cfilter(internal::cpu_list, internal::cpu_list >= cpuva
/// @brief Returns name of the cpu instruction set
CMT_UNUSED static const char* cpu_name(cpu_t set)
{
- static const char* names[] = { "sse2", "sse3", "ssse3", "sse41", "sse42", "avx1", "avx2" };
+ static const char* names[] = { "common", "sse2", "sse3", "ssse3", "sse41", "sse42", "avx1", "avx2" };
if (set >= cpu_t::lowest && set <= cpu_t::highest)
return names[static_cast<size_t>(set)];
return "-";