about summary refs log tree commit diff stats
path: root/miasm2/jitter/jitload.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2017-04-21 17:41:21 +0200
committerAjax <commial@gmail.com>2017-04-21 17:41:21 +0200
commit6d9c56ea70fd28d32f56fe2467c17cd8b0748597 (patch)
tree796481229679ecf9735cbc4ac6301008d89508dd /miasm2/jitter/jitload.py
parent7a9ba958c66c80b843bdd571f6989a8bb3e98dce (diff)
downloadmiasm-6d9c56ea70fd28d32f56fe2467c17cd8b0748597.tar.gz
miasm-6d9c56ea70fd28d32f56fe2467c17cd8b0748597.zip
Let GCC be the default jitter
Diffstat (limited to '')
-rw-r--r--miasm2/jitter/jitload.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py
index 693dd224..4760c8dd 100644
--- a/miasm2/jitter/jitload.py
+++ b/miasm2/jitter/jitload.py
@@ -163,12 +163,12 @@ class jitter:
 
     C_Gen = CGen
 
-    def __init__(self, ir_arch, jit_type="tcc"):
+    def __init__(self, ir_arch, jit_type="gcc"):
         """Init an instance of jitter.
         @ir_arch: ir instance for this architecture
         @jit_type: JiT backend to use. Available options are:
-            - "tcc"
             - "gcc"
+            - "tcc"
             - "llvm"
             - "python"
         """