[SMTChecker] Fix require with message

This commit is contained in:
Leonardo Alt
2019-07-01 16:17:06 +02:00
parent 22776cddcd
commit 75663dc91e
3 changed files with 15 additions and 6 deletions
+1 -1
View File
@@ -386,7 +386,7 @@ void BMC::visitAssert(FunctionCall const& _funCall)
void BMC::visitRequire(FunctionCall const& _funCall)
{
auto const& args = _funCall.arguments();
solAssert(args.size() == 1, "");
solAssert(args.size() >= 1, "");
solAssert(args.front()->annotation().type->category() == Type::Category::Bool, "");
if (isRootFunction())
addVerificationTarget(
+5 -5
View File
@@ -501,16 +501,16 @@ void SMTEncoder::visitAssert(FunctionCall const& _funCall)
{
auto const& args = _funCall.arguments();
solAssert(args.size() == 1, "");
solAssert(args[0]->annotation().type->category() == Type::Category::Bool, "");
addPathImpliedExpression(expr(*args[0]));
solAssert(args.front()->annotation().type->category() == Type::Category::Bool, "");
addPathImpliedExpression(expr(*args.front()));
}
void SMTEncoder::visitRequire(FunctionCall const& _funCall)
{
auto const& args = _funCall.arguments();
solAssert(args.size() == 1, "");
solAssert(args[0]->annotation().type->category() == Type::Category::Bool, "");
addPathImpliedExpression(expr(*args[0]));
solAssert(args.size() >= 1, "");
solAssert(args.front()->annotation().type->category() == Type::Category::Bool, "");
addPathImpliedExpression(expr(*args.front()));
}
void SMTEncoder::visitGasLeft(FunctionCall const& _funCall)