From c8e201e520b874439f2525e6cfe02d387654b2c1 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 4 Dec 2018 15:03:53 +0100 Subject: Provide Yul Object builtins. --- libsolidity/interface/AssemblyStack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libsolidity') diff --git a/libsolidity/interface/AssemblyStack.cpp b/libsolidity/interface/AssemblyStack.cpp index ff345089..c27bd039 100644 --- a/libsolidity/interface/AssemblyStack.cpp +++ b/libsolidity/interface/AssemblyStack.cpp @@ -50,7 +50,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(); } -- cgit