diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 08:08:38 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 08:08:38 -0500 |
commit | 3dc947a7575bd23703644996d8e853e5e618b2e3 (patch) | |
tree | c91ff763003cb1b83f76c31b0948ff8699280f57 /splitmemdict.hpp | |
parent | b33c0c564c51252ff241a2143e467dadfb8d8994 (diff) |
fix execute; disable verify(); bench w/ standalone
Diffstat (limited to 'splitmemdict.hpp')
-rw-r--r-- | splitmemdict.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/splitmemdict.hpp b/splitmemdict.hpp index 730d103..73b2013 100644 --- a/splitmemdict.hpp +++ b/splitmemdict.hpp @@ -36,7 +36,7 @@ class SplitMemDict : public Dictionary uint8_t extra[Dictionary::Begin]; Addr convertAddress(Addr addr) const noexcept { - return addr < RON ? addr : static_cast<Addr>(addr - RON); + return static_cast<Addr>(addr - (addr >= RON) * RON); } public: |