diff options
| author | Ajax <commial@gmail.com> | 2016-09-02 16:17:57 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2016-09-02 17:45:54 +0200 |
| commit | 54aa823f145fb2c920f5ab1d97773dfca126f0e4 (patch) | |
| tree | 09573ff284868a33f344a0e6ae38d6da96a5a133 | |
| parent | 21a3b3f9ad4fcd38b27c3fbc9795e72ee8b41e94 (diff) | |
| download | miasm-54aa823f145fb2c920f5ab1d97773dfca126f0e4.tar.gz miasm-54aa823f145fb2c920f5ab1d97773dfca126f0e4.zip | |
Remove useless code
| -rw-r--r-- | miasm2/jitter/jitcore_tcc.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/miasm2/jitter/jitcore_tcc.py b/miasm2/jitter/jitcore_tcc.py index d3e90f85..1bb25a3a 100644 --- a/miasm2/jitter/jitcore_tcc.py +++ b/miasm2/jitter/jitcore_tcc.py @@ -16,15 +16,6 @@ def jit_tcc_compil(func_name, func_code): return c -class jit_tcc_code(): - - def __init__(self, c): - self.c = c - - def __call__(self, cpu, vm): - return Jittcc.tcc_exec_bloc(self.c, cpu, vm) - - def gen_core(arch, attrib): lib_dir = os.path.dirname(os.path.realpath(__file__)) @@ -63,12 +54,6 @@ def gen_C_source(ir_arch, func_code): return c_source -class objref: - - def __init__(self, obj): - self.obj = obj - - class myresolver: def __init__(self, offset): |