From 6ee5567d9a4b64da3da80760da4aadce94371319 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 3 Dec 2023 17:45:53 +0000 Subject: [PATCH] bug 1228: dcbt* to match against nop, not dc* in ISACaller --- src/openpower/decoder/isa/caller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openpower/decoder/isa/caller.py b/src/openpower/decoder/isa/caller.py index 657593d4..249a56e7 100644 --- a/src/openpower/decoder/isa/caller.py +++ b/src/openpower/decoder/isa/caller.py @@ -2111,7 +2111,7 @@ class ISACaller(ISACallerHelper, ISAFPHelpers, StepLoop): ins_name = dotstrp # match against instructions treated as nop, see nop below - if asmop.startswith("dc"): + if asmop.startswith("dcbt"): illegal = False ins_name = "nop" -- 2.30.2