summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-01-27 16:29:34 +0100
committerGitHub <noreply@github.com>2022-01-27 16:29:34 +0100
commit8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96 (patch)
treeae8ff7aebf61aeb912c39387ee282a6871a2c537 /src/video_core
parentMerge pull request #7762 from bunnei/un-map-improve (diff)
parentcommon/xbyak_api: Make BuildRegSet() constexpr (diff)
downloadyuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar
yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar.gz
yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar.bz2
yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar.lz
yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar.xz
yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar.zst
yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/macro/macro_jit_x64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/macro/macro_jit_x64.cpp b/src/video_core/macro/macro_jit_x64.cpp
index 924c9fe5c..47b28ad16 100644
--- a/src/video_core/macro/macro_jit_x64.cpp
+++ b/src/video_core/macro/macro_jit_x64.cpp
@@ -29,7 +29,7 @@ constexpr Xbyak::Reg64 PARAMETERS = Xbyak::util::r12;
constexpr Xbyak::Reg32 METHOD_ADDRESS = Xbyak::util::r14d;
constexpr Xbyak::Reg64 BRANCH_HOLDER = Xbyak::util::r15;
-const std::bitset<32> PERSISTENT_REGISTERS = Common::X64::BuildRegSet({
+constexpr std::bitset<32> PERSISTENT_REGISTERS = Common::X64::BuildRegSet({
STATE,
RESULT,
PARAMETERS,