diff options
author | Gav Wood <i@gavwood.com> | 2014-07-06 10:23:13 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-07-06 10:23:13 +0800 |
commit | b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c (patch) | |
tree | bee47b57fb3ed7fd008fb7cb42b9cbcb6e094ab8 /CompilerState.h | |
parent | a7f469020033b8879a99e6c9dc7cc68deed14c9f (diff) | |
download | dexon-solidity-b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c.tar dexon-solidity-b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c.tar.gz dexon-solidity-b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c.tar.bz2 dexon-solidity-b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c.tar.lz dexon-solidity-b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c.tar.xz dexon-solidity-b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c.tar.zst dexon-solidity-b5cc0ae6cdf0bef2a92845fc6f5b74ce47d6428c.zip |
Compiler fixes. Updates for coins.
Diffstat (limited to 'CompilerState.h')
-rw-r--r-- | CompilerState.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerState.h b/CompilerState.h index 5dcde614..a0b3bf46 100644 --- a/CompilerState.h +++ b/CompilerState.h @@ -41,7 +41,7 @@ struct CompilerState CodeFragment const& getDef(std::string const& _s); void populateStandard(); - unsigned stackSize = 64; + unsigned stackSize = 128; std::map<std::string, std::pair<unsigned, unsigned>> vars; ///< maps name to stack offset & size. std::map<std::string, CodeFragment> defs; std::map<std::string, CodeFragment> args; |