From 3dc947a7575bd23703644996d8e853e5e618b2e3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Nov 2023 08:08:38 -0500 Subject: fix execute; disable verify(); bench w/ standalone --- splitmemdict.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'splitmemdict.hpp') 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 - RON); + return static_cast(addr - (addr >= RON) * RON); } public: -- cgit v1.2.3