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:
f6efd96
)
insndb/core: fix operands iteration
author
Dmitry Selyutin
<ghostmansd@gmail.com>
Sun, 11 Jun 2023 08:13:11 +0000
(11:13 +0300)
committer
Dmitry Selyutin
<ghostmansd@gmail.com>
Sun, 11 Jun 2023 08:13:11 +0000
(11:13 +0300)
src/openpower/insndb/core.py
patch
|
blob
|
history
diff --git
a/src/openpower/insndb/core.py
b/src/openpower/insndb/core.py
index 973aac002776707372988360ff8dee3dcbea501c..1388fa21dbc2cae1b3e5a02382018f2225bdd315 100644
(file)
--- a/
src/openpower/insndb/core.py
+++ b/
src/openpower/insndb/core.py
@@
-884,7
+884,7
@@
class Operands(Dict, datatype=object):
@staticmethod
def filter(cls):
- return lambda pair: is
instance
(pair[0], cls)
+ return lambda pair: is
subclass
(pair[0], cls)
@cached_property
def static(self):