mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Split Common.h into Numeric.h.
This commit is contained in:
@@ -81,7 +81,7 @@ TestCase::TestResult ObjectCompilerTest::run(ostream& _stream, string const& _li
|
||||
solAssert(obj.bytecode, "");
|
||||
|
||||
m_obtainedResult = "Text:\n" + obj.assembly + "\n";
|
||||
m_obtainedResult += "Binary:\n" + toHex(obj.bytecode->bytecode) + "\n";
|
||||
m_obtainedResult += "Binary:\n" + util::toHex(obj.bytecode->bytecode) + "\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -95,7 +95,7 @@ TestCase::TestResult ObjectCompilerTest::run(ostream& _stream, string const& _li
|
||||
else
|
||||
m_obtainedResult +=
|
||||
"Bytecode: " +
|
||||
toHex(obj.bytecode->bytecode) +
|
||||
util::toHex(obj.bytecode->bytecode) +
|
||||
"\nOpcodes: " +
|
||||
boost::trim_copy(evmasm::disassemble(obj.bytecode->bytecode)) +
|
||||
"\nSourceMappings:" +
|
||||
|
||||
Reference in New Issue
Block a user