aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/AssemblyStack.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-12-04 22:36:03 +0800
committerchriseth <chris@ethereum.org>2018-12-04 22:36:03 +0800
commit7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3 (patch)
tree8f2ff40c543dc1448779047862c9b6d15ff261d4 /libsolidity/interface/AssemblyStack.cpp
parent0b1125281aa36d84977c279314ef459ca3d533ca (diff)
downloaddexon-solidity-7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3.tar
dexon-solidity-7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3.tar.gz
dexon-solidity-7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3.tar.bz2
dexon-solidity-7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3.tar.lz
dexon-solidity-7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3.tar.xz
dexon-solidity-7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3.tar.zst
dexon-solidity-7ee1ddc172a29ed1ccdd545a996d19f4c2a145a3.zip
Switch namespaces.
Diffstat (limited to 'libsolidity/interface/AssemblyStack.cpp')
-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 07f88934..c15a192a 100644
--- a/libsolidity/interface/AssemblyStack.cpp
+++ b/libsolidity/interface/AssemblyStack.cpp
@@ -112,7 +112,7 @@ MachineAssemblyObject AssemblyStack::assemble(Machine _machine) const
{
MachineAssemblyObject object;
eth::Assembly assembly;
- yul::CodeGenerator::assemble(*m_parserResult->code, *m_parserResult->analysisInfo, assembly);
+ CodeGenerator::assemble(*m_parserResult->code, *m_parserResult->analysisInfo, assembly);
object.bytecode = make_shared<eth::LinkerObject>(assembly.assemble());
object.assembly = assembly.assemblyString();
return object;