aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-06-13 08:00:51 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-13 08:00:51 +0800
commit2625f282b99076eee6853381cc5d1560241e1988 (patch)
tree6b5acf83ec48520f75039ba3edfd609abe5a7f52
parent62b05d415765d8ca31dad7001a4a49648845aa7e (diff)
downloaddexon-solidity-2625f282b99076eee6853381cc5d1560241e1988.tar
dexon-solidity-2625f282b99076eee6853381cc5d1560241e1988.tar.gz
dexon-solidity-2625f282b99076eee6853381cc5d1560241e1988.tar.bz2
dexon-solidity-2625f282b99076eee6853381cc5d1560241e1988.tar.lz
dexon-solidity-2625f282b99076eee6853381cc5d1560241e1988.tar.xz
dexon-solidity-2625f282b99076eee6853381cc5d1560241e1988.tar.zst
dexon-solidity-2625f282b99076eee6853381cc5d1560241e1988.zip
Remove obsolete --formal option from CLI
-rw-r--r--Changelog.md1
-rw-r--r--solc/CommandLineInterface.cpp9
2 files changed, 2 insertions, 8 deletions
diff --git a/Changelog.md b/Changelog.md
index e3383eae..61a6c693 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -3,6 +3,7 @@
Breaking Changes:
* ABI Encoder: Properly pad data from calldata (``msg.data`` and external function parameters). Use ``abi.encodePacked`` for unpadded encoding.
* Code Generator: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code!
+ * Commandline interface: Remove obsolete ``--formal`` option.
* Commandline interface: Require ``-`` if standard input is used as source.
* General: ``continue`` in a ``do...while`` loop jumps to the condition (it used to jump to the loop body). Warning: this may silently change the semantics of existing code.
* General: Disallow ``sha3`` and ``suicide`` aliases.
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index 89ac8806..2e4b70e6 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -88,7 +88,6 @@ static string const g_strEVM = "evm";
static string const g_strEVM15 = "evm15";
static string const g_strEVMVersion = "evm-version";
static string const g_streWasm = "ewasm";
-static string const g_strFormal = "formal";
static string const g_strGas = "gas";
static string const g_strHelp = "help";
static string const g_strInputFile = "input-file";
@@ -132,7 +131,6 @@ static string const g_argBinaryRuntime = g_strBinaryRuntime;
static string const g_argCloneBinary = g_strCloneBinary;
static string const g_argCombinedJson = g_strCombinedJson;
static string const g_argCompactJSON = g_strCompactJSON;
-static string const g_argFormal = g_strFormal;
static string const g_argGas = g_strGas;
static string const g_argHelp = g_strHelp;
static string const g_argInputFile = g_strInputFile;
@@ -216,7 +214,6 @@ static bool needsHumanTargetedStdout(po::variables_map const& _args)
g_argBinary,
g_argBinaryRuntime,
g_argCloneBinary,
- g_argFormal,
g_argMetadata,
g_argNatspecUser,
g_argNatspecDev,
@@ -639,8 +636,7 @@ Allowed options)",
(g_argSignatureHashes.c_str(), "Function signature hashes of the contracts.")
(g_argNatspecUser.c_str(), "Natspec user documentation of all contracts.")
(g_argNatspecDev.c_str(), "Natspec developer documentation of all contracts.")
- (g_argMetadata.c_str(), "Combined Metadata JSON whose Swarm hash is stored on-chain.")
- (g_argFormal.c_str(), "Translated source suitable for formal analysis. (Deprecated)");
+ (g_argMetadata.c_str(), "Combined Metadata JSON whose Swarm hash is stored on-chain.");
desc.add(outputComponents);
po::options_description allOptions = desc;
@@ -1236,9 +1232,6 @@ void CommandLineInterface::outputCompilationResults()
handleNatspec(true, contract);
handleNatspec(false, contract);
} // end of contracts iteration
-
- if (m_args.count(g_argFormal))
- cerr << "Support for the Why3 output was removed." << endl;
}
}