diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-05-16 10:11:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-16 10:11:54 +0200 |
| commit | 652bf298e56214c33c2291064eba00d1559a07aa (patch) | |
| tree | e49bba5921b46b04e783b45f2e483be36e50e0de /test/arch/x86/unit/mn_cdq.py | |
| parent | c2b0779c68ce50514e19e021084328d265b53663 (diff) | |
| parent | f307f6b8eb015c9dfcf436ecf69aff0c97626a83 (diff) | |
| download | miasm-652bf298e56214c33c2291064eba00d1559a07aa.tar.gz miasm-652bf298e56214c33c2291064eba00d1559a07aa.zip | |
Merge pull request #743 from commial/refactor/remove-TCC
Remove TCC jitter engine support
Diffstat (limited to '')
| -rw-r--r-- | test/arch/x86/unit/mn_cdq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/arch/x86/unit/mn_cdq.py b/test/arch/x86/unit/mn_cdq.py index f4e4d6e7..b6abc781 100644 --- a/test/arch/x86/unit/mn_cdq.py +++ b/test/arch/x86/unit/mn_cdq.py @@ -433,7 +433,7 @@ if __name__ == "__main__": Test_CDQE_64, Test_CDQE_64_signed, ] - if sys.argv[1] not in ["gcc", "tcc"]: + if sys.argv[1] not in ["gcc"]: # TODO XXX CQO use 128 bit not supported in gcc yet! tests += [ Test_CQO_64, |