Skip to content

Commit b592f2e

Browse files
committed
Undefine DATA opcodes for legacy
1 parent e50aa0d commit b592f2e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/evmone/baseline_instruction_table.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ constexpr auto legacy_cost_tables = []() noexcept {
2929
tables[EVMC_CANCUN][OP_RJUMPV] = instr::undefined;
3030
tables[EVMC_CANCUN][OP_CALLF] = instr::undefined;
3131
tables[EVMC_CANCUN][OP_RETF] = instr::undefined;
32+
tables[EVMC_CANCUN][OP_DATALOAD] = instr::undefined;
33+
tables[EVMC_CANCUN][OP_DATALOADN] = instr::undefined;
34+
tables[EVMC_CANCUN][OP_DATASIZE] = instr::undefined;
35+
tables[EVMC_CANCUN][OP_DATACOPY] = instr::undefined;
3236
return tables;
3337
}();
3438

0 commit comments

Comments
 (0)