power_insn: really skip sv. entries for PPC database
authorDmitry Selyutin <ghostmansd@gmail.com>
Fri, 14 Oct 2022 19:14:32 +0000 (22:14 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Fri, 14 Oct 2022 19:14:32 +0000 (22:14 +0300)
src/openpower/decoder/power_insn.py

index 3105810a3a77618b5637245c4cca315dbbcb1c3b..4aa2fff95f8b8ac88762f6b1be58f5b1e0780e9e 100644 (file)
@@ -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)