mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix mistake about default value for inliner setting
This commit is contained in:
parent
477b621f2e
commit
2260c23ce1
@ -27,7 +27,7 @@ optimized Yul IR for a Solidity source. Similarly, one can use ``solc --strict-a
|
||||
for a stand-alone Yul mode.
|
||||
|
||||
.. note::
|
||||
The `peephole optimizer <https://en.wikipedia.org/wiki/Peephole_optimization>`_ and the inliner are always
|
||||
The `peephole optimizer <https://en.wikipedia.org/wiki/Peephole_optimization>`_ is always
|
||||
enabled by default and can only be turned off via the :ref:`Standard JSON <compiler-api>`.
|
||||
|
||||
You can find more details on both optimizer modules and their optimization steps below.
|
||||
|
@ -153,8 +153,8 @@ explanatory purposes.
|
||||
"constantOptimizer": false,
|
||||
"cse": false,
|
||||
"deduplicate": false,
|
||||
// inliner defaults to "true"
|
||||
"inliner": true,
|
||||
// inliner defaults to "false"
|
||||
"inliner": false,
|
||||
// jumpdestRemover defaults to "true"
|
||||
"jumpdestRemover": true,
|
||||
"orderLiterals": false,
|
||||
|
@ -272,9 +272,9 @@ Input Description
|
||||
// The peephole optimizer is always on if no details are given,
|
||||
// use details to switch it off.
|
||||
"peephole": true,
|
||||
// The inliner is always on if no details are given,
|
||||
// use details to switch it off.
|
||||
"inliner": true,
|
||||
// The inliner is always off if no details are given,
|
||||
// use details to switch it on.
|
||||
"inliner": false,
|
||||
// The unused jumpdest remover is always on if no details are given,
|
||||
// use details to switch it off.
|
||||
"jumpdestRemover": true,
|
||||
@ -647,4 +647,4 @@ Error Types
|
||||
12. ``FatalError``: Fatal error not processed correctly - this should be reported as an issue.
|
||||
13. ``YulException``: Error during Yul code generation - this should be reported as an issue.
|
||||
14. ``Warning``: A warning, which didn't stop the compilation, but should be addressed if possible.
|
||||
15. ``Info``: Information that the compiler thinks the user might find useful, but is not dangerous and does not necessarily need to be addressed.
|
||||
15. ``Info``: Information that the compiler thinks the user might find useful, but is not dangerous and does not necessarily need to be addressed.
|
||||
|
Loading…
Reference in New Issue
Block a user