We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17676c2 commit 256676cCopy full SHA for 256676c
plugins/thumb/thumb_mem.ml
@@ -99,7 +99,9 @@ module Make(CT : Theory.Core) = struct
99
sp += const Int.(List.length regs * 4);
100
] in
101
let ctrl = CT.jmp (load s32 (var sp)) in
102
- CT.branch ~?cnd (CT.blk null data ctrl) (seq [])
+ match cnd with
103
+ | `AL -> CT.blk null data ctrl
104
+ | _ -> CT.branch ~?cnd (CT.blk null data ctrl) (seq [])
105
106
107
let push regs cnd = branch cnd [
0 commit comments