diff options
Diffstat (limited to '')
| -rw-r--r-- | miasm2/ir/symbexec_top.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/ir/symbexec_top.py b/miasm2/ir/symbexec_top.py index 71837ed0..1e1e76e9 100644 --- a/miasm2/ir/symbexec_top.py +++ b/miasm2/ir/symbexec_top.py @@ -39,6 +39,9 @@ class SymbolicStateTop(StateEngine): return (self.symbols == other.symbols and self.regstop == other.regstop) + def __ne__(self, other): + return not self.__eq__(other) + def __iter__(self): for dst, src in self._symbols: yield dst, src |