mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add verbatim builtin.
This commit is contained in:
@@ -99,6 +99,11 @@ void EthAssemblyAdapter::appendLinkerSymbol(std::string const& _linkerSymbol)
|
||||
m_assembly.appendLibraryAddress(_linkerSymbol);
|
||||
}
|
||||
|
||||
void EthAssemblyAdapter::appendVerbatim(bytes const& _data, int _stackDifference)
|
||||
{
|
||||
m_assembly.appendVerbatim(_data, _stackDifference);
|
||||
}
|
||||
|
||||
void EthAssemblyAdapter::appendJump(int _stackDiffAfter, JumpType _jumpType)
|
||||
{
|
||||
appendJumpInstruction(evmasm::Instruction::JUMP, _jumpType);
|
||||
|
||||
Reference in New Issue
Block a user