aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/formal/SMTPortfolio.cpp
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-08-14 18:34:53 +0800
committerLeonardo Alt <leo@ethereum.org>2018-11-23 16:43:49 +0800
commitdee0c4ded8636f2e8d157df79745ce907fa47c75 (patch)
tree49aa2ecd3ab70de12d93fb1043ac7fa1f3860ab1 /libsolidity/formal/SMTPortfolio.cpp
parentf3c2309c736ffcdb84fc133106b05d1be1eda95a (diff)
downloaddexon-solidity-dee0c4ded8636f2e8d157df79745ce907fa47c75.tar
dexon-solidity-dee0c4ded8636f2e8d157df79745ce907fa47c75.tar.gz
dexon-solidity-dee0c4ded8636f2e8d157df79745ce907fa47c75.tar.bz2
dexon-solidity-dee0c4ded8636f2e8d157df79745ce907fa47c75.tar.lz
dexon-solidity-dee0c4ded8636f2e8d157df79745ce907fa47c75.tar.xz
dexon-solidity-dee0c4ded8636f2e8d157df79745ce907fa47c75.tar.zst
dexon-solidity-dee0c4ded8636f2e8d157df79745ce907fa47c75.zip
Error message stays in the SMTChecker
Diffstat (limited to 'libsolidity/formal/SMTPortfolio.cpp')
-rw-r--r--libsolidity/formal/SMTPortfolio.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/libsolidity/formal/SMTPortfolio.cpp b/libsolidity/formal/SMTPortfolio.cpp
index 2c95c3fa..6bdbd310 100644
--- a/libsolidity/formal/SMTPortfolio.cpp
+++ b/libsolidity/formal/SMTPortfolio.cpp
@@ -42,14 +42,6 @@ SMTPortfolio::SMTPortfolio(map<h256, string> const& _smtlib2Responses)
#endif
#if !defined (HAVE_Z3) && !defined (HAVE_CVC4)
m_solvers.emplace_back(make_shared<smt::SMTLib2Interface>(_smtlib2Responses));
-#else
- if (!_smtlib2Responses.empty())
- m_errorReporter.warning(
- "SMT-LIB2 query responses were given in the auxiliary input, "
- "but this Solidity binary uses an SMT solver (Z3/CVC4) directly."
- "These responses will be ignored."
- "Consider disabling Z3/CVC4 at compilation time in order to use SMT-LIB2 responses."
- );
#endif
(void)_smtlib2Responses;
}