[SMTChecker] Support events and low-level logs

This commit is contained in:
Alex Beregszaszi
2020-09-16 11:50:39 +02:00
committed by Leonardo Alt
parent b08b76ffca
commit c8c17b693b
4 changed files with 76 additions and 0 deletions
+8
View File
@@ -676,6 +676,14 @@ void SMTEncoder::endVisit(FunctionCall const& _funCall)
case FunctionType::Kind::ArrayPop:
arrayPop(_funCall);
break;
case FunctionType::Kind::Log0:
case FunctionType::Kind::Log1:
case FunctionType::Kind::Log2:
case FunctionType::Kind::Log3:
case FunctionType::Kind::Log4:
case FunctionType::Kind::Event:
// These can be safely ignored.
break;
default:
m_errorReporter.warning(
4588_error,