diff options
author | chriseth <chris@ethereum.org> | 2018-12-21 00:22:17 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2019-01-08 00:23:38 +0800 |
commit | 5b73c2ae3bce09442572b5401a7bcccc2ffe7590 (patch) | |
tree | d2e5b07ef78f240b3b8d1ae72cfae4054ce6e41e /libyul/backends/evm/EVMDialect.h | |
parent | 9f5d34af7de481c5b8ce89057a6df2a3283d14b0 (diff) | |
download | dexon-solidity-5b73c2ae3bce09442572b5401a7bcccc2ffe7590.tar.gz dexon-solidity-5b73c2ae3bce09442572b5401a7bcccc2ffe7590.tar.zst dexon-solidity-5b73c2ae3bce09442572b5401a7bcccc2ffe7590.zip |
Take special functions that require literals into account.
Diffstat (limited to 'libyul/backends/evm/EVMDialect.h')
-rw-r--r-- | libyul/backends/evm/EVMDialect.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libyul/backends/evm/EVMDialect.h b/libyul/backends/evm/EVMDialect.h index feb00b03..c23833bc 100644 --- a/libyul/backends/evm/EVMDialect.h +++ b/libyul/backends/evm/EVMDialect.h @@ -72,6 +72,7 @@ private: size_t _params, size_t _returns, bool _movable, + bool _literalArguments, std::function<void(FunctionCall const&, AbstractAssembly&, std::function<void()>)> _generateCode ); |