diff options
author | chriseth <chris@ethereum.org> | 2019-01-10 18:10:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 18:10:34 +0800 |
commit | a379873acce9da89609d6c2daac2ef785747f1ff (patch) | |
tree | 4ec9e9caf45a3cb042336da7a0b0a05a672bcada /libyul/optimiser/FullInliner.h | |
parent | a414e13b7a56315ece4af2fc58739f84df7f50c1 (diff) | |
parent | b7ef8509554768de04d1cf7d11b122e98ab43ae8 (diff) | |
download | dexon-solidity-a379873acce9da89609d6c2daac2ef785747f1ff.tar.gz dexon-solidity-a379873acce9da89609d6c2daac2ef785747f1ff.tar.zst dexon-solidity-a379873acce9da89609d6c2daac2ef785747f1ff.zip |
Merge pull request #5774 from ethereum/variablesAreFree
[Yul] Variables are free with regards to code size.
Diffstat (limited to 'libyul/optimiser/FullInliner.h')
-rw-r--r-- | libyul/optimiser/FullInliner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libyul/optimiser/FullInliner.h b/libyul/optimiser/FullInliner.h index d2dd3229..32664c96 100644 --- a/libyul/optimiser/FullInliner.h +++ b/libyul/optimiser/FullInliner.h @@ -91,7 +91,7 @@ public: void tentativelyUpdateCodeSize(YulString _function, YulString _callSite); private: - void updateCodeSize(FunctionDefinition& fun); + void updateCodeSize(FunctionDefinition const& _fun); void handleBlock(YulString _currentFunctionName, Block& _block); /// The AST to be modified. The root block itself will not be modified, because |