aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-12-06 23:49:52 +0800
committerGitHub <noreply@github.com>2018-12-06 23:49:52 +0800
commit4b2a64306a6b85407210245a47a7df1e0a5e0cbf (patch)
tree9ac2098d84315977e5659987c5398344d52ae813 /libsolidity
parente1e578d71e22577dc7313214143b81aa24f5ebab (diff)
parentc8e201e520b874439f2525e6cfe02d387654b2c1 (diff)
downloaddexon-solidity-4b2a64306a6b85407210245a47a7df1e0a5e0cbf.tar.gz
dexon-solidity-4b2a64306a6b85407210245a47a7df1e0a5e0cbf.tar.zst
dexon-solidity-4b2a64306a6b85407210245a47a7df1e0a5e0cbf.zip
Merge pull request #5587 from ethereum/yulCodeBuiltins
Builtin functions to access Yul objects.
Diffstat (limited to 'libsolidity')
-rw-r--r--libsolidity/interface/AssemblyStack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/AssemblyStack.cpp b/libsolidity/interface/AssemblyStack.cpp
index 0fe57a45..fbfb3472 100644
--- a/libsolidity/interface/AssemblyStack.cpp
+++ b/libsolidity/interface/AssemblyStack.cpp
@@ -52,7 +52,7 @@ yul::Dialect languageToDialect(AssemblyStack::Language _language)
case AssemblyStack::Language::Assembly:
return yul::Dialect::looseAssemblyForEVM();
case AssemblyStack::Language::StrictAssembly:
- return yul::Dialect::strictAssemblyForEVM();
+ return yul::Dialect::strictAssemblyForEVMObjects();
case AssemblyStack::Language::Yul:
return yul::Dialect::yul();
}