From f9c49e92dada2aa51ca594f435f962617796c116 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Fri, 27 Mar 2015 14:31:24 +0100 Subject: Clean: remove unecessary ast_parser modification --- test/arch/x86/unit/asm_test.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'test/arch/x86/unit/asm_test.py') diff --git a/test/arch/x86/unit/asm_test.py b/test/arch/x86/unit/asm_test.py index b65ef876..c6381d9e 100644 --- a/test/arch/x86/unit/asm_test.py +++ b/test/arch/x86/unit/asm_test.py @@ -20,18 +20,6 @@ if filename and os.path.isfile(filename): reg_and_id = dict(mn_x86.regs.all_regs_ids_byname) - -def my_ast_int2expr(a): - return ExprInt32(a) - - -def my_ast_id2expr(t): - return reg_and_id.get(t, ExprId(t, size=32)) - -my_var_parser = parse_ast(my_ast_id2expr, my_ast_int2expr) -base_expr.setParseAction(my_var_parser) - - class Asm_Test(object): def __init__(self): self.myjit = Machine("x86_32").jitter() -- cgit 1.4.1