diff options
| author | Ajax <commial@gmail.com> | 2015-11-13 17:27:30 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-11-13 17:27:30 +0100 |
| commit | 8ae102ba0fd8231c9d491a308144b0dd5424e0df (patch) | |
| tree | b64bff59063d3b7b9b090228e473bba4e1d28350 | |
| parent | 1fb09685622caeb20af42b09929857190a8d32a2 (diff) | |
| download | miasm-8ae102ba0fd8231c9d491a308144b0dd5424e0df.tar.gz miasm-8ae102ba0fd8231c9d491a308144b0dd5424e0df.zip | |
x86/sem: fix typo (creds @serpilliere)
| -rw-r--r-- | miasm2/arch/x86/sem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py index a5bdb46d..0e83de8c 100644 --- a/miasm2/arch/x86/sem.py +++ b/miasm2/arch/x86/sem.py @@ -416,7 +416,7 @@ def get_shift(a, b): return shift def _rotate_tpl(ir, instr, a, b, op, left=False, include_cf=False): - """Template for generate rotater with operation @op + """Template to generate a rotater with operation @op A temporary basic block is generated to handle 0-rotate @op: operation to execute @left (optional): indicates a left rotate if set, default is False @@ -478,7 +478,7 @@ def rcr(ir, instr, a, b): def _shift_tpl(op, ir, instr, a, b, c=None, op_inv=None, left=False, custom_of=None): - """Template for generate shifter with operation @op + """Template to generate a shifter with operation @op A temporary basic block is generated to handle 0-shift @op: operation to execute @c (optional): if set, instruction has a bit provider |