1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

LLVM: handle cascadelake CPU name

This commit is contained in:
Nekotekina 2019-03-05 21:46:58 +03:00
parent e38b7aee5a
commit efe067bfa0

View File

@ -624,6 +624,7 @@ std::string jit_compiler::cpu(const std::string& _cpu)
m_cpu == "broadwell" ||
m_cpu == "skylake" ||
m_cpu == "skylake-avx512" ||
m_cpu == "cascadelake" ||
m_cpu == "cannonlake" ||
m_cpu == "icelake" ||
m_cpu == "icelake-client" ||
@ -637,6 +638,7 @@ std::string jit_compiler::cpu(const std::string& _cpu)
}
if (m_cpu == "skylake-avx512" ||
m_cpu == "cascadelake" ||
m_cpu == "cannonlake" ||
m_cpu == "icelake" ||
m_cpu == "icelake-client" ||