diff options
| author | serpilliere <fabrice.desclaux@cea.fr> | 2015-10-18 16:59:20 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-23 10:47:24 +0200 |
| commit | 3d4c4551f6b0685ab19dd13c9b78a98d081b8292 (patch) | |
| tree | 657403706d51feb37468fd110549ccf0633d39b0 | |
| parent | c92d6b342bf2ff7ab569ba3851a9a23c8862befc (diff) | |
| download | miasm-3d4c4551f6b0685ab19dd13c9b78a98d081b8292.tar.gz miasm-3d4c4551f6b0685ab19dd13c9b78a98d081b8292.zip | |
Arch/x86/arch: fix iret[wdq] test
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/x86/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py index cbb9fe93..402644d2 100644 --- a/miasm2/arch/x86/arch.py +++ b/miasm2/arch/x86/arch.py @@ -510,7 +510,7 @@ class instruction_x86(instruction): return True if self.name.startswith('SYS'): return True - return self.name in ['CALL', 'HLT', 'IRET', 'ICEBP'] + return self.name in ['CALL', 'HLT', 'IRET', 'IRETD', 'IRETQ', 'ICEBP'] def splitflow(self): if self.name in conditional_branch: |