mayl8822 / miasm

Automatically exported from code.google.com/p/miasm
0 stars 0 forks source link

ROL/ROR simplification #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
MOV AX, 0x1337
ROL AX, 0x83

AX not simplified (0x1337 <<< 0x83)

2.
MOV AX, 0x1337
ROR AX, 0x83

AX = 0 (should not !)

Fix available at:
http://code.google.com/r/fperigaud-miasmclone/source/detail?r=b6e5f285eac3d4cbae
18c0e2847688bf6a22b717

Original issue reported on code.google.com by fperig...@gmail.com on 9 Jun 2014 at 2:06

GoogleCodeExporter commented 9 years ago
Hi!

Patch in revision e912c0c73134

Original comment by serpilli...@gmail.com on 12 Jun 2014 at 2:31