diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-04-21 19:40:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-21 19:40:19 +0200 |
| commit | 7ce0b4f473b2830ccc4d720455ba62c438e973c0 (patch) | |
| tree | c9d143e6ad024edddbb4408471c847c6e18b7e30 /miasm2/jitter/jitload.py | |
| parent | 19aaed86a09be0bc1a4a79d2077b74b962e4d8ef (diff) | |
| parent | ce796845a46c075a21604740e587151600a37bd2 (diff) | |
| download | miasm-7ce0b4f473b2830ccc4d720455ba62c438e973c0.tar.gz miasm-7ce0b4f473b2830ccc4d720455ba62c438e973c0.zip | |
Merge pull request #536 from commial/refactor/gcc-default-jitter
Refactor/gcc default jitter
Diffstat (limited to 'miasm2/jitter/jitload.py')
| -rw-r--r-- | miasm2/jitter/jitload.py | 4 |
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" """ |