diff options
| author | Camille Mougey <commial@gmail.com> | 2015-02-20 14:16:55 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-02-20 14:16:55 +0100 |
| commit | f1966ac767894b4fe954613d2134f87cdc3697ca (patch) | |
| tree | 878c5e56046c920e58548fd522140fa73b3bed0e /test/ir/ir2C.py | |
| parent | 736befb2b6fab02e601eae392a9969ac91f2caa3 (diff) | |
| parent | c166f6cf0eb5d8dd697f03cb89c2703db1554b2b (diff) | |
| download | miasm-f1966ac767894b4fe954613d2134f87cdc3697ca.tar.gz miasm-f1966ac767894b4fe954613d2134f87cdc3697ca.zip | |
Merge pull request #80 from serpilliere/fix_bsr_bsf
Fix bsr bsf
Diffstat (limited to 'test/ir/ir2C.py')
| -rw-r--r-- | 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 1089bba4..11b9b10e 100644 --- a/test/ir/ir2C.py +++ b/test/ir/ir2C.py @@ -37,7 +37,7 @@ class TestIrIr2C(unittest.TestCase): self.translationTest( ExprOp('-', *args[:2]), r'(((0x0&0xffffffff) - (0x1&0xffffffff))&0xffffffff)') self.translationTest( - ExprOp('bsr', *args[:2]), r'my_bsr(0x0, 0x1)') + ExprOp('bsr', *args[:1]), r'x86_bsr(0x0, 0x20)') self.translationTest( ExprOp('cpuid0', *args[:2]), r'cpuid0(0x0, 0x1)') self.translationTest( |