diff options
| author | Camille Mougey <commial@gmail.com> | 2017-08-09 14:49:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-09 14:49:09 +0200 |
| commit | 745f3e995995968d36b762c7159cacef1243e4c6 (patch) | |
| tree | 7e43e5846f24124dd7a509931bd3a2322d922b13 | |
| parent | 0303602135a98e3bd91dda245f9344f06b293da9 (diff) | |
| parent | 8484d39749d938232757b58f75cdd21e7e1f613f (diff) | |
| download | miasm-745f3e995995968d36b762c7159cacef1243e4c6.tar.gz miasm-745f3e995995968d36b762c7159cacef1243e4c6.zip | |
Merge pull request #601 from serpilliere/aarch64_fix
Aarch64: missing dstflow instr
| -rw-r--r-- | miasm2/arch/aarch64/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/aarch64/arch.py b/miasm2/arch/aarch64/arch.py index 09af57b1..7af1953a 100644 --- a/miasm2/arch/aarch64/arch.py +++ b/miasm2/arch/aarch64/arch.py @@ -386,7 +386,7 @@ class instruction_aarch64(instruction): raise NotImplementedError("bad op") def dstflow(self): - return self.name in self.name in BRCOND + ["B", "BL"] + return self.name in self.name in BRCOND + ["B", "BL", "BR", "BLR"] def mnemo_flow_to_dst_index(self, name): if self.name in ['CBZ', 'CBNZ']: |