Merge pull request #5587 from ethereum/yulCodeBuiltins

Builtin functions to access Yul objects.
This commit is contained in:
chriseth
2018-12-06 16:49:52 +01:00
committed by GitHub
4 changed files with 79 additions and 1 deletions
+1 -1
View File
@@ -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();
}