about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--miasm2/jitter/jitcore_tcc.py15
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):