diff options
author | Gav Wood <i@gavwood.com> | 2014-05-30 20:47:13 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-05-30 20:47:13 +0800 |
commit | 78c0baa026d69a6b03d0f3d9288c4da4e03f4b96 (patch) | |
tree | 5b0bbc3bd2b7adcb277a9d38c42aaedaaadfc76b /Compiler.cpp | |
parent | b64a96199fb17d624974d8d5efe8e0758ef117bf (diff) | |
download | dexon-solidity-78c0baa026d69a6b03d0f3d9288c4da4e03f4b96.tar.gz dexon-solidity-78c0baa026d69a6b03d0f3d9288c4da4e03f4b96.tar.zst dexon-solidity-78c0baa026d69a6b03d0f3d9288c4da4e03f4b96.zip |
Actually do endow ether.
Standard extension.
Diffstat (limited to 'Compiler.cpp')
-rw-r--r-- | Compiler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Compiler.cpp b/Compiler.cpp index cd326341..8400ad95 100644 --- a/Compiler.cpp +++ b/Compiler.cpp @@ -32,6 +32,7 @@ bytes eth::compileLLL(string const& _src, bool _opt, vector<string>* _errors) try { CompilerState cs; + cs.populateStandard(); auto f = CodeFragment::compile(_src, cs); if (_opt) f.optimise(); @@ -58,6 +59,7 @@ std::string eth::compileLLLToAsm(std::string const& _src, bool _opt, std::vector try { CompilerState cs; + cs.populateStandard(); auto f = CodeFragment::compile(_src, cs); if (_opt) f.optimise(); |