From f88aa570a3d7a6e891bd261b699f212dbefdc5b1 Mon Sep 17 00:00:00 2001 From: Macchiarch Date: Mon, 6 Sep 2021 21:49:10 +0200 Subject: [PATCH] cpu_info: remove tSSE4a and tSSE5 (#643) tSSE4a and tSSE5 have been removed from xbyak --- tests/cpu_info.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/cpu_info.cpp b/tests/cpu_info.cpp index 8a1ca464..b65de18e 100644 --- a/tests/cpu_info.cpp +++ b/tests/cpu_info.cpp @@ -73,8 +73,6 @@ TEST_CASE("Host CPU supports", "[a64]") { std::make_pair(Xbyak::util::Cpu::tSSE3, "SSE3"), std::make_pair(Xbyak::util::Cpu::tSSE41, "SSE41"), std::make_pair(Xbyak::util::Cpu::tSSE42, "SSE42"), - std::make_pair(Xbyak::util::Cpu::tSSE4a, "SSE4a"), - std::make_pair(Xbyak::util::Cpu::tSSE5, "SSE5"), std::make_pair(Xbyak::util::Cpu::tSSSE3, "SSSE3"), std::make_pair(Xbyak::util::Cpu::tVAES, "VAES"), std::make_pair(Xbyak::util::Cpu::tVPCLMULQDQ, "VPCLMULQDQ"),