diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-03-27 14:31:24 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-04-01 23:47:37 +0200 |
| commit | f9c49e92dada2aa51ca594f435f962617796c116 (patch) | |
| tree | 20d40a13793f3ce6d476f0997ddcc35ef975de9c /example/asm/shellcode.py | |
| parent | 22777cc19e6e1f43fbbfb908e5d4d4cd7c76b391 (diff) | |
| download | miasm-f9c49e92dada2aa51ca594f435f962617796c116.tar.gz miasm-f9c49e92dada2aa51ca594f435f962617796c116.zip | |
Clean: remove unecessary ast_parser modification
Diffstat (limited to 'example/asm/shellcode.py')
| -rw-r--r-- | example/asm/shellcode.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/example/asm/shellcode.py b/example/asm/shellcode.py index 7bf76093..3b22e801 100644 --- a/example/asm/shellcode.py +++ b/example/asm/shellcode.py @@ -58,15 +58,6 @@ else: virt = st output = st -# Fix the AST parser -def my_ast_int2expr(a): - return m2_expr.ExprInt_fromsize(size, a) - -def my_ast_id2expr(t): - return reg_and_id.get(t, m2_expr.ExprId(t, size=size)) - -my_var_parser = parse_ast(my_ast_id2expr, my_ast_int2expr) -base_expr.setParseAction(my_var_parser) # Get and parse the source code with open(args.source) as fstream: |