mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
yulopti: Add an error message to assetion triggered when an optimizer step abbreviation conflicts with yulopti controls
This commit is contained in:
parent
3e9fa7e388
commit
d3d1520870
@ -119,7 +119,15 @@ public:
|
|||||||
|
|
||||||
for (auto const& optionAndDescription: _extraOptions)
|
for (auto const& optionAndDescription: _extraOptions)
|
||||||
{
|
{
|
||||||
yulAssert(_optimizationSteps.count(optionAndDescription.first) == 0, "");
|
yulAssert(
|
||||||
|
_optimizationSteps.count(optionAndDescription.first) == 0,
|
||||||
|
"ERROR: Conflict between yulopti controls and Yul optimizer step abbreviations.\n"
|
||||||
|
"Character '" + string(1, optionAndDescription.first) + "' is assigned to both " +
|
||||||
|
optionAndDescription.second + " and " + _optimizationSteps.at(optionAndDescription.first) + " step.\n"
|
||||||
|
"This is most likely caused by someone adding a new step abbreviation to "
|
||||||
|
"OptimiserSuite::stepNameToAbbreviationMap() and not realizing that it's used by yulopti.\n"
|
||||||
|
"Please update the code to use a different character and recompile yulopti."
|
||||||
|
);
|
||||||
printPair(optionAndDescription);
|
printPair(optionAndDescription);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user