diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-01 21:31:35 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-06-15 04:21:26 +0800 |
commit | 398099f50eaa7a4862950914054dbe68d0eee67b (patch) | |
tree | f3bede0b06c16e0ed2a38c7145695c39622fb397 /libsolidity/codegen | |
parent | 42b61171d981ceccd5f79af5508db92b4f2ad54b (diff) | |
download | dexon-solidity-398099f50eaa7a4862950914054dbe68d0eee67b.tar.gz dexon-solidity-398099f50eaa7a4862950914054dbe68d0eee67b.tar.zst dexon-solidity-398099f50eaa7a4862950914054dbe68d0eee67b.zip |
Remove obsolete errorTag()
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/CompilerContext.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libsolidity/codegen/CompilerContext.h b/libsolidity/codegen/CompilerContext.h index c37142c9..d1e8dabe 100644 --- a/libsolidity/codegen/CompilerContext.h +++ b/libsolidity/codegen/CompilerContext.h @@ -141,8 +141,6 @@ public: CompilerContext& appendInvalid(); /// Appends a conditional INVALID instruction CompilerContext& appendConditionalInvalid(); - /// Returns an "ErrorTag" - eth::AssemblyItem errorTag() { return m_asm->errorTag(); } /// Appends a JUMP to a specific tag CompilerContext& appendJumpTo(eth::AssemblyItem const& _tag) { m_asm->appendJump(_tag); return *this; } /// Appends pushing of a new tag and @returns the new tag. |