Skip to content

Commit

Permalink
Try a little harder to handle symbolic cc_op values; closes #2158
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmot committed Jun 4, 2020
1 parent 8e25274 commit 0f4235a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions angr/engines/vex/claripy/ccall.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def boolean_extend(O, a, b, size):
def op_concretize(op):
if type(op) is int:
return op
op = op.ite_excavated
if op.op == 'If':
cases = list(claripy.reverse_ite_cases(op))
if all(c.op == 'BVV' for _, c in cases):
Expand Down

0 comments on commit 0f4235a

Please sign in to comment.