pull/1163/head
Joran Honig 5 years ago
parent e174da4dd8
commit 3a15d50efd
  1. 1
      mythril/laser/smt/__init__.py
  2. 2
      mythril/laser/smt/bitvec_helper.py

@ -4,6 +4,7 @@ from mythril.laser.smt.bitvec_helper import (
If,
UGT,
ULT,
ULE,
Concat,
Extract,
URem,

@ -18,7 +18,7 @@ def _comparison_helper(
) -> Bool:
annotations = a.annotations.union(b.annotations)
if isinstance(a, BitVecFunc):
_func_comparison_helper(a, b, operation, default_value, inputs_equal)
return _func_comparison_helper(a, b, operation, default_value, inputs_equal)
return Bool(operation(a.raw, b.raw), annotations)

Loading…
Cancel
Save