Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
WIP trying to understand what's happening
Browse files Browse the repository at this point in the history
  • Loading branch information
gumb0 committed Jul 23, 2018
1 parent c950c7c commit 9b09e48
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions libevm/LegacyVM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,14 +197,20 @@ owning_bytes_ref LegacyVM::exec(u256& _io_gas, ExtVMFace& _ext, OnOpFunc const&
//
void LegacyVM::interpretCases()
{
INIT_CASES
DO_CASES
{
//
//INIT_CASES
//DO_CASES
for (;;)
{
fetchInstruction();
switch (m_OP)
{
{
//
// Call-related instructions
//

CASE(CREATE2)
// CASE(CREATE2)
case Instruction::CREATE2:
{
ON_OP();
if (!m_schedule->haveCreate2)
Expand Down

0 comments on commit 9b09e48

Please sign in to comment.