projects
/
openpower-isa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7bf5edf
)
power_insn: really skip sv. entries for PPC database
author
Dmitry Selyutin
<ghostmansd@gmail.com>
Fri, 14 Oct 2022 19:14:32 +0000
(22:14 +0300)
committer
Dmitry Selyutin
<ghostmansd@gmail.com>
Fri, 14 Oct 2022 19:14:32 +0000
(22:14 +0300)
src/openpower/decoder/power_insn.py
patch
|
blob
|
history
diff --git
a/src/openpower/decoder/power_insn.py
b/src/openpower/decoder/power_insn.py
index 3105810a3a77618b5637245c4cca315dbbcb1c3b..4aa2fff95f8b8ac88762f6b1be58f5b1e0780e9e 100644
(file)
--- 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)