Skip to content

Commit

Permalink
Comment out arithmetic_simplify
Browse files Browse the repository at this point in the history
arithmetic_simplify makes test_pwnable_collision in manticore-examples
repo hang. I'm not exactly sure what is happening, but there's probably
infinite recursion/walking/"simplification" happening somewhere.
  • Loading branch information
ekilmer committed Dec 17, 2019
1 parent fae081d commit 18cb668
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manticore/core/smtlib/visitors.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,8 @@ def to_constant(expression):

@lru_cache(maxsize=128, typed=True)
def simplify(expression):
expression = arithmetic_simplify(expression)
# TODO: Fix arithmetic_simplify
# expression = arithmetic_simplify(expression)
return expression


Expand Down

0 comments on commit 18cb668

Please sign in to comment.