[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
+2 -1
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) :