From f0494307232e52dcc268f5f32d26cc89d7e98e3a Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 1 Mar 2016 22:56:39 +0100 Subject: Code generation (missing external access and source locations). --- solc/CommandLineInterface.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'solc/CommandLineInterface.h') diff --git a/solc/CommandLineInterface.h b/solc/CommandLineInterface.h index 1c40e26d..52854bac 100644 --- a/solc/CommandLineInterface.h +++ b/solc/CommandLineInterface.h @@ -21,10 +21,11 @@ */ #pragma once -#include #include #include #include +#include +#include namespace dev { @@ -52,6 +53,7 @@ private: /// Parse assembly input. bool assemble(); + void outputAssembly(); void outputCompilationResults(); @@ -91,6 +93,8 @@ private: std::map m_libraries; /// Solidity compiler stack std::unique_ptr m_compiler; + /// Assembly stacks for assembly-only mode + std::map m_assemblyStacks; }; } -- cgit