Skip to content

Commit

Permalink
Undefine DATA opcodes for legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
gumb0 committed May 12, 2023
1 parent 5f890e9 commit 0e2a34a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/evmone/baseline_instruction_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ constexpr auto legacy_cost_tables = []() noexcept {
tables[EVMC_CANCUN][OP_RJUMPV] = instr::undefined;
tables[EVMC_CANCUN][OP_CALLF] = instr::undefined;
tables[EVMC_CANCUN][OP_RETF] = instr::undefined;
tables[EVMC_CANCUN][OP_DATALOAD] = instr::undefined;
tables[EVMC_CANCUN][OP_DATALOADN] = instr::undefined;
tables[EVMC_CANCUN][OP_DATASIZE] = instr::undefined;
tables[EVMC_CANCUN][OP_DATACOPY] = instr::undefined;
return tables;
}();

Expand Down

0 comments on commit 0e2a34a

Please sign in to comment.