aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm/AsmCodeGen.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-03-22 02:38:37 +0800
committerchriseth <chris@ethereum.org>2017-04-25 22:49:03 +0800
commitc6fa78c73e3a23661014fd03b92d74d2e7df9e81 (patch)
tree7ad6f3ff22eb5bccd72cd868d153f0370203783a /libsolidity/inlineasm/AsmCodeGen.h
parente0849f2f3bbb23ebddb37cd770f46266967e789d (diff)
downloaddexon-solidity-c6fa78c73e3a23661014fd03b92d74d2e7df9e81.tar.gz
dexon-solidity-c6fa78c73e3a23661014fd03b92d74d2e7df9e81.tar.zst
dexon-solidity-c6fa78c73e3a23661014fd03b92d74d2e7df9e81.zip
Use actual type checking phase of assembler.
Diffstat (limited to 'libsolidity/inlineasm/AsmCodeGen.h')
-rw-r--r--libsolidity/inlineasm/AsmCodeGen.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/libsolidity/inlineasm/AsmCodeGen.h b/libsolidity/inlineasm/AsmCodeGen.h
index f259a36c..ed61a7eb 100644
--- a/libsolidity/inlineasm/AsmCodeGen.h
+++ b/libsolidity/inlineasm/AsmCodeGen.h
@@ -44,9 +44,6 @@ class CodeGenerator
public:
CodeGenerator(Block const& _parsedData, ErrorList& _errors):
m_parsedData(_parsedData), m_errors(_errors) {}
- /// Performs type checks and @returns false on error.
- /// Actually runs the full code generation but discards the result.
- bool typeCheck(ExternalIdentifierAccess const& _identifierAccess = ExternalIdentifierAccess());
/// Performs code generation and @returns the result.
eth::Assembly assemble(ExternalIdentifierAccess const& _identifierAccess = ExternalIdentifierAccess());
/// Performs code generation and appends generated to to _assembly.