mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-18 22:42:58 +00:00
CMakeLists: Globally disable MSVC warning C4592
C4592: Symbol will be dynamically initialized (implementation limitation)
This commit is contained in:
@@ -54,7 +54,6 @@ using HostLocList = std::initializer_list<HostLoc>;
|
||||
|
||||
// RSP is preserved for function calls
|
||||
// R15 contains the JitState pointer
|
||||
#pragma warning (suppress : 4592) // Symbol will be dynamically initialized (implementation limitation)
|
||||
const HostLocList any_gpr = {
|
||||
HostLoc::RAX,
|
||||
HostLoc::RBX,
|
||||
@@ -72,7 +71,6 @@ const HostLocList any_gpr = {
|
||||
HostLoc::R14,
|
||||
};
|
||||
|
||||
#pragma warning (suppress : 4592) // Symbol will be dynamically initialized (implementation limitation)
|
||||
const HostLocList any_xmm = {
|
||||
HostLoc::XMM0,
|
||||
HostLoc::XMM1,
|
||||
|
||||
Reference in New Issue
Block a user