diff options
| author | 2022-01-27 10:29:34 -0500 | |
|---|---|---|
| committer | 2022-01-27 10:29:34 -0500 | |
| commit | 8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96 (patch) | |
| tree | ae8ff7aebf61aeb912c39387ee282a6871a2c537 /src/video_core | |
| parent | Merge pull request #7762 from bunnei/un-map-improve (diff) | |
| parent | common/xbyak_api: Make BuildRegSet() constexpr (diff) | |
| download | yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar.gz yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.tar.xz yuzu-8a244dd3d34e3c9ded99fa3f0cdb7ca8e175cf96.zip | |
Merge pull request #7783 from lioncash/abi-cexpr
common/xbyak_api: Make BuildRegSet() constexpr
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/macro/macro_jit_x64.cpp | 2 |
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; | |||
| 29 | constexpr Xbyak::Reg32 METHOD_ADDRESS = Xbyak::util::r14d; | 29 | constexpr Xbyak::Reg32 METHOD_ADDRESS = Xbyak::util::r14d; |
| 30 | constexpr Xbyak::Reg64 BRANCH_HOLDER = Xbyak::util::r15; | 30 | constexpr Xbyak::Reg64 BRANCH_HOLDER = Xbyak::util::r15; |
| 31 | 31 | ||
| 32 | const std::bitset<32> PERSISTENT_REGISTERS = Common::X64::BuildRegSet({ | 32 | constexpr std::bitset<32> PERSISTENT_REGISTERS = Common::X64::BuildRegSet({ |
| 33 | STATE, | 33 | STATE, |
| 34 | RESULT, | 34 | RESULT, |
| 35 | PARAMETERS, | 35 | PARAMETERS, |