about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2011-08-26 08:38:24 +0200
committerserpilliere <devnull@localhost>2011-08-26 08:38:24 +0200
commit78bacd4d0dd014412a81ce8dc72ad3954bcd12e5 (patch)
tree67ebbea3818b5c5a358de4330c6c30ddc268f036
parent56ab30c96700b438e6f95f5a10739bc8b4cf646a (diff)
downloadmiasm-78bacd4d0dd014412a81ce8dc72ad3954bcd12e5.tar.gz
miasm-78bacd4d0dd014412a81ce8dc72ad3954bcd12e5.zip
fir arm issubcall mnemo
Diffstat (limited to '')
-rw-r--r--miasm/arch/arm_arch.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/miasm/arch/arm_arch.py b/miasm/arch/arm_arch.py
index 084242e2..a8c47502 100644
--- a/miasm/arch/arm_arch.py
+++ b/miasm/arch/arm_arch.py
@@ -1679,7 +1679,9 @@ class arm_bdt(arm_mn):
         return self.cond != COND_AL
     def dstflow(self):
         return False
-        
+    def is_subcall(self):
+        return False
+
 class arm_br(arm_mn):
     mask_list = [bm_int101, bm_lnk, bm_offs]