From 82718c58c4c0f1a1b71ef656ef529a231296e3ef Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sun, 13 Apr 2025 03:59:23 +1000 Subject: [PATCH] cpu/drcbex64.cpp: Fixed another bug uncovered after fixing a bug in the DRC tester. --- src/devices/cpu/drcbex64.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/devices/cpu/drcbex64.cpp b/src/devices/cpu/drcbex64.cpp index b3c51da2a01..6124b6cd57a 100644 --- a/src/devices/cpu/drcbex64.cpp +++ b/src/devices/cpu/drcbex64.cpp @@ -4683,8 +4683,7 @@ void drcbe_x64::op_and(Assembler &a, const instruction &inst) return false; }); - if ((inst.size() == 4) || !src2p.is_immediate_value(util::make_bitmask(inst.size() * 8))) - mov_param_reg(a, dstp, dstreg); + mov_param_reg(a, dstp, dstreg); } }