From: Dmitry Selyutin Date: Fri, 14 Oct 2022 19:14:32 +0000 (+0300) Subject: power_insn: really skip sv. entries for PPC database X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53d6fcb239c46c49d927c9f502c15eab66f00482;p=openpower-isa.git power_insn: really skip sv. entries for PPC database --- diff --git a/src/openpower/decoder/power_insn.py b/src/openpower/decoder/power_insn.py index 3105810a..4aa2fff9 100644 --- a/src/openpower/decoder/power_insn.py +++ b/src/openpower/decoder/power_insn.py @@ -2243,6 +2243,8 @@ class PPCDatabase: db = {} matches = (exact_match, LK_match, AA_match, Rc_match) for (name, _) in mdwndb: + if name.startswith("sv."): + continue alias = None for match in matches: alias = match(name)