Skip to content

Commit cdfa717

Browse files
committed
resolve merge dupe
Signed-off-by: garyschulte <garyschulte@gmail.com>
1 parent 5bed17b commit cdfa717

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/bytecode/main.zig

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,6 @@ pub const OPCODE_INFO: [256]?OpCodeInfo = blk: {
495495
map[CREATE] = OpCodeInfo{ .name = "CREATE", .inputs = 3, .outputs = 1, .immediate_size = 0, .terminating = false };
496496
map[CALL] = OpCodeInfo{ .name = "CALL", .inputs = 7, .outputs = 1, .immediate_size = 0, .terminating = false };
497497
map[CALLCODE] = OpCodeInfo{ .name = "CALLCODE", .inputs = 7, .outputs = 1, .immediate_size = 0, .terminating = false };
498-
map[DUPN] = OpCodeInfo{ .name = "DUPN", .inputs = 0, .outputs = 1, .immediate_size = 1, .terminating = false };
499-
map[SWAPN] = OpCodeInfo{ .name = "SWAPN", .inputs = 0, .outputs = 0, .immediate_size = 1, .terminating = false };
500-
map[EXCHANGE] = OpCodeInfo{ .name = "EXCHANGE", .inputs = 0, .outputs = 0, .immediate_size = 1, .terminating = false };
501498
map[RETURN] = OpCodeInfo{ .name = "RETURN", .inputs = 2, .outputs = 0, .immediate_size = 0, .terminating = true };
502499
map[DELEGATECALL] = OpCodeInfo{ .name = "DELEGATECALL", .inputs = 6, .outputs = 1, .immediate_size = 0, .terminating = false };
503500
map[CREATE2] = OpCodeInfo{ .name = "CREATE2", .inputs = 4, .outputs = 1, .immediate_size = 0, .terminating = false };

0 commit comments

Comments
 (0)