diff options
Diffstat (limited to 'miasm2/core/asm_ast.py')
| -rw-r--r-- | miasm2/core/asm_ast.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/miasm2/core/asm_ast.py b/miasm2/core/asm_ast.py index 7a365ba1..3b06ce62 100644 --- a/miasm2/core/asm_ast.py +++ b/miasm2/core/asm_ast.py @@ -39,9 +39,6 @@ class AstNode(object): def __and__(self, other): return AstOp('&', self, other) - def __neg__(self): - return AstOp('-', self) - class AstInt(AstNode): """ |