Skip to content

Commit

Permalink
Unify br and jump behaviour (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gert-JanG authored Jun 27, 2024
1 parent 61b5482 commit 369ed3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion angr_platforms/msp430/instrs_msp430.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,9 @@ def compute_result(self, src, dst):
else:
# If we're setting PC, but not from SP+, it's a BR instead
self.jump(None, src)
return src
return None
else:
return src

def negative(self, src, dst, ret):
# pylint: disable=arguments-differ
Expand Down

0 comments on commit 369ed3c

Please sign in to comment.