mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Minor updates.
This commit is contained in:
parent
8dfad3e7c0
commit
b567133750
@ -116,7 +116,7 @@ ostream& eth::operator<<(ostream& _out, AssemblyItemsConstRef _i)
|
|||||||
_out << " PUSH" << i.data();
|
_out << " PUSH" << i.data();
|
||||||
break;
|
break;
|
||||||
case PushString:
|
case PushString:
|
||||||
_out << " PUSH'[" << h256(i.data()).abridged() << "]";
|
_out << " PUSH'[" << hex << (unsigned)i.data() << "]";
|
||||||
break;
|
break;
|
||||||
case PushTag:
|
case PushTag:
|
||||||
_out << " PUSH[tag" << i.data() << "]";
|
_out << " PUSH[tag" << i.data() << "]";
|
||||||
@ -125,7 +125,7 @@ ostream& eth::operator<<(ostream& _out, AssemblyItemsConstRef _i)
|
|||||||
_out << " tag" << i.data() << ":";
|
_out << " tag" << i.data() << ":";
|
||||||
break;
|
break;
|
||||||
case PushData:
|
case PushData:
|
||||||
_out << " PUSH*[" << h256(i.data()).abridged() << "]";
|
_out << " PUSH*[" << hex << (unsigned)i.data() << "]";
|
||||||
break;
|
break;
|
||||||
case UndefinedItem:
|
case UndefinedItem:
|
||||||
_out << " ???";
|
_out << " ???";
|
||||||
@ -156,7 +156,7 @@ ostream& Assembly::streamOut(ostream& _out) const
|
|||||||
_out << "tag" << i.m_data << ": " << endl;
|
_out << "tag" << i.m_data << ": " << endl;
|
||||||
break;
|
break;
|
||||||
case PushData:
|
case PushData:
|
||||||
_out << " PUSH [" << h256(i.m_data).abridged() << "]" << endl;
|
_out << " PUSH [" << hex << (unsigned)i.m_data << "]" << endl;
|
||||||
break;
|
break;
|
||||||
default:;
|
default:;
|
||||||
}
|
}
|
||||||
@ -165,7 +165,7 @@ ostream& Assembly::streamOut(ostream& _out) const
|
|||||||
{
|
{
|
||||||
_out << ".data:" << endl;
|
_out << ".data:" << endl;
|
||||||
for (auto const& i: m_data)
|
for (auto const& i: m_data)
|
||||||
_out << " " << i.first.abridged() << ": " << toHex(i.second) << endl;
|
_out << " " << hex << (unsigned)(u256)i.first << ": " << toHex(i.second) << endl;
|
||||||
}
|
}
|
||||||
return _out;
|
return _out;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user