From: Luke Kenneth Casson Leighton Date: Thu, 1 Sep 2022 15:51:06 +0000 (+0100) Subject: add missing case name RC_OE RC_ONLY in power_insn.py X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f8787dc44fdf3482f9cbcaeef5cdf6dd50cb6f3;p=openpower-isa.git add missing case name RC_OE RC_ONLY in power_insn.py --- diff --git a/src/openpower/decoder/power_insn.py b/src/openpower/decoder/power_insn.py index adb1c86a..78217512 100644 --- a/src/openpower/decoder/power_insn.py +++ b/src/openpower/decoder/power_insn.py @@ -717,7 +717,7 @@ class Database: svp64 = svp64db.get(identifier) if ppc.rc is _RCOE.ONE: variants = {name:True for name in ppc.names} - elif ppc.rc is _RCOE.RC: + elif ppc.rc in [_RCOE.RC_OE, _RCOE.RC_ONLY]: variants = {name:False for name in ppc.names} variants.update({f"{name}.":True for name in ppc.names}) else: