bug 1228: dcbt* to match against nop, not dc* in ISACaller
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 3 Dec 2023 17:45:53 +0000 (17:45 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 9 Dec 2023 06:47:37 +0000 (06:47 +0000)
src/openpower/decoder/isa/caller.py

index 657593d49697f006860c28be599959adc03f738a..249a56e788f01c5714c07cffada9f188293c43ea 100644 (file)
@@ -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"