diff options
| author | Camille Mougey <commial@gmail.com> | 2018-05-09 14:50:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-09 14:50:01 +0200 |
| commit | 28034afb1bbe1fe6a51f7d49784b781c2f352e03 (patch) | |
| tree | c783761d6bae80be882314de326a3ecf33457c22 /test | |
| parent | 8f5a42ae2b659f10bdf52adbd8e382e0784f74a1 (diff) | |
| parent | 3a8cce52ef8158890befd5c50fed1a53610efe2b (diff) | |
| download | miasm-28034afb1bbe1fe6a51f7d49784b781c2f352e03.tar.gz miasm-28034afb1bbe1fe6a51f7d49784b781c2f352e03.zip | |
Merge pull request #733 from serpilliere/fix_fpu_C_name
Jitter: fix FPU C functions names
Diffstat (limited to '')
| -rwxr-xr-x | test/ir/ir2C.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ir/ir2C.py b/test/ir/ir2C.py index a966938b..c84473c3 100755 --- a/test/ir/ir2C.py +++ b/test/ir/ir2C.py @@ -40,7 +40,7 @@ class TestIrIr2C(unittest.TestCase): self.translationTest( ExprOp('bsr', *args[:1]), r'x86_bsr(0x0, 0x20)') self.translationTest( - ExprOp('cpuid0', *args[:2]), r'cpuid0(0x0, 0x1)') + ExprOp('cpuid', *args[:2]), r'cpuid(0x0, 0x1)') self.translationTest( ExprOp('fcom0', *args[:2]), r'fcom0(0x0, 0x1)') self.translationTest( |