Skip to content

Commit

Permalink
Remove check for claripy.fp.FPV type
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin committed Sep 23, 2024
1 parent 572184a commit aeb3c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angrop/gadget_finder/gadget_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ def _analyze_mem_access(self, final_state, init_state, gadget):
continue

# we don't like floating point stuff
if isinstance(a.data.ast, (claripy.fp.FPV, claripy.ast.FP)):
if isinstance(a.data.ast, (claripy.ast.FP)):
continue

# ignore read/write on stack after pivot
Expand Down

0 comments on commit aeb3c78

Please sign in to comment.