[SMTChecker] Fix ICE when using >>>

This commit is contained in:
Djordje Mijovic 2020-10-28 09:25:14 +01:00
parent 07e3f60ffc
commit 9cc37c3fa4
2 changed files with 12 additions and 1 deletions

View File

@ -1627,7 +1627,8 @@ smtutil::Expression SMTEncoder::bitwiseOperation(
result = bvLeft << bvRight;
break;
case Token::SHR:
solAssert(false, "");
result = bvLeft >> bvRight;
break;
case Token::SAR:
result = isSigned ?
smtutil::Expression::ashr(bvLeft, bvRight) :

View File

@ -0,0 +1,10 @@
pragma experimental SMTChecker;
contract C {
function f() public pure {
fixed x;
assert(x >>> 6 == 0);
}
}
// ----
// UnimplementedFeatureError: Not yet implemented - FixedPointType.