mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fix redundant typo
This commit is contained in:
parent
939b916f4a
commit
a68501cebd
@ -1162,7 +1162,7 @@ will be transformed into the code below after the Unused Store Eliminator step i
|
|||||||
For memory store operations, things are generally simpler, at least in the outermost yul block as all such
|
For memory store operations, things are generally simpler, at least in the outermost yul block as all such
|
||||||
statements will be removed if they are never read from in any code path.
|
statements will be removed if they are never read from in any code path.
|
||||||
At function analysis level, however, the approach is similar to ``sstore``, as we do not know whether the memory location will
|
At function analysis level, however, the approach is similar to ``sstore``, as we do not know whether the memory location will
|
||||||
be read once we leave the function's scope, so the statement will be removed only if all code code paths lead to a memory overwrite.
|
be read once we leave the function's scope, so the statement will be removed only if all code paths lead to a memory overwrite.
|
||||||
|
|
||||||
Best run in SSA form.
|
Best run in SSA form.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user