Skip to content

Commit b901aff

Browse files
authored
Merge pull request #15069 from ethereum/instructions-order
Order `Instructions.h` by opcodes
2 parents 5afa25e + 007205a commit b901aff

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libevmasm/Instruction.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,9 @@ enum class Instruction: uint8_t
104104
MSIZE, ///< get the size of active memory
105105
GAS, ///< get the amount of available gas
106106
JUMPDEST, ///< set a potential jump destination
107-
MCOPY = 0x5e, ///< copy between memory areas
108-
109107
TLOAD = 0x5c, ///< load word from transient storage
110108
TSTORE = 0x5d, ///< save word to transient storage
109+
MCOPY = 0x5e, ///< copy between memory areas
111110

112111
PUSH0 = 0x5f, ///< place the value 0 on stack
113112
PUSH1 = 0x60, ///< place 1 byte item on stack

0 commit comments

Comments
 (0)