mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Assembler fix.
This commit is contained in:
parent
1fdb7a1536
commit
009b25d043
@ -87,7 +87,7 @@ public:
|
||||
template <class T> Assembly& operator<<(T const& _d) { append(_d); return *this; }
|
||||
|
||||
AssemblyItem const& back() { return m_items.back(); }
|
||||
std::string backString() const { return m_items.back().m_type == PushString ? m_strings.at((h256)m_items.back().m_data) : std::string(); }
|
||||
std::string backString() const { return m_items.size() && m_items.back().m_type == PushString ? m_strings.at((h256)m_items.back().m_data) : std::string(); }
|
||||
|
||||
void onePath() { assert(!m_totalDeposit && !m_baseDeposit); m_baseDeposit = m_deposit; m_totalDeposit = INT_MAX; }
|
||||
void otherPath() { donePath(); m_totalDeposit = m_deposit; m_deposit = m_baseDeposit; }
|
||||
|
Loading…
Reference in New Issue
Block a user