Skip to content

Commit

Permalink
Fix vstr semantic
Browse files Browse the repository at this point in the history
  • Loading branch information
b14aa178 committed Sep 9, 2021
1 parent e08c21d commit 946cc4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miasm/arch/arm/sem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ def vstr(ir, instr, a, b):
e.append(ExprAssign(ExprMem(b.ptr + ExprInt(4, 32), 32), a[32:]))
else:
e.append(ExprAssign(b, a[32:]))
e.append(ExprAssign(b, a[:32]))
e.append(ExprAssign(ExprMem(b.ptr + ExprInt(4, 32), 32), a[:32]))
else:
raise NotImplementedError('Not implemented')
return e, []
Expand Down

0 comments on commit 946cc4d

Please sign in to comment.