diff options
Diffstat (limited to 'miasm2/arch/arm/arch.py')
| -rw-r--r-- | miasm2/arch/arm/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/arm/arch.py b/miasm2/arch/arm/arch.py index 3c219710..b169d608 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -366,7 +366,7 @@ class instruction_armt(instruction_arm): self.args[0] = s def breakflow(self): - if self.name in ['B', 'BL', 'BLX', + if self.name in ['B', 'BX', 'BL', 'BLX', 'BEQ', 'BNE', 'BCS', 'BCC', 'BMI', 'BPL', 'BVS', 'BVC', 'BHI', 'BLS', 'BGE', 'BLT', 'BGT', 'BLE', 'CBZ', 'CBNZ']: |