diff options
author | chriseth <chris@ethereum.org> | 2018-06-14 18:04:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-14 18:04:08 +0800 |
commit | dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7 (patch) | |
tree | d32c20e0d651d13d034cc5eaa601eccebcdf1ee8 /libsolidity/inlineasm/AsmScope.cpp | |
parent | baeabe1c2d1c5c447eeb943f3b750459a6bc924d (diff) | |
parent | d24f6fd34b3a984b87ac6054d33922116fb12977 (diff) | |
download | dexon-solidity-dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7.tar dexon-solidity-dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7.tar.gz dexon-solidity-dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7.tar.bz2 dexon-solidity-dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7.tar.lz dexon-solidity-dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7.tar.xz dexon-solidity-dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7.tar.zst dexon-solidity-dc5cd3e1e7db933493fe1b0dc12e5ecdf2a50ed7.zip |
Merge pull request #4296 from ethereum/yul-internal
[WIP] Rename some internal constructs from Julia/Iulia to Yul
Diffstat (limited to 'libsolidity/inlineasm/AsmScope.cpp')
-rw-r--r-- | libsolidity/inlineasm/AsmScope.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/inlineasm/AsmScope.cpp b/libsolidity/inlineasm/AsmScope.cpp index 64d5bd9a..af81b301 100644 --- a/libsolidity/inlineasm/AsmScope.cpp +++ b/libsolidity/inlineasm/AsmScope.cpp @@ -32,7 +32,7 @@ bool Scope::registerLabel(string const& _name) return true; } -bool Scope::registerVariable(string const& _name, JuliaType const& _type) +bool Scope::registerVariable(string const& _name, YulType const& _type) { if (exists(_name)) return false; @@ -42,7 +42,7 @@ bool Scope::registerVariable(string const& _name, JuliaType const& _type) return true; } -bool Scope::registerFunction(string const& _name, std::vector<JuliaType> const& _arguments, std::vector<JuliaType> const& _returns) +bool Scope::registerFunction(string const& _name, std::vector<YulType> const& _arguments, std::vector<YulType> const& _returns) { if (exists(_name)) return false; |