diff options
author | David Mitchell <davem@iabyn.com> | 2017-07-14 14:50:19 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2017-07-27 11:30:23 +0100 |
commit | f961b1eba1e87173b5720f83913c4830be29a28e (patch) | |
tree | f2a9c8a4fff015df060a26d0ffdcb3e24393a751 /opnames.h | |
parent | 7b394f128b8d5e84ca0e485c98c8f135baf53b4f (diff) | |
download | perl-f961b1eba1e87173b5720f83913c4830be29a28e.tar.gz |
regen/opcodes: move 'method' entry next to others
there's a block of method_foo ops, and method was apart from them.
No functional difference and part from auto-allocated op numbers.
Diffstat (limited to 'opnames.h')
-rw-r--r-- | opnames.h | 58 |
1 files changed, 29 insertions, 29 deletions
@@ -197,35 +197,35 @@ typedef enum opcode { OP_ANDASSIGN = 180, OP_ORASSIGN = 181, OP_DORASSIGN = 182, - OP_METHOD = 183, - OP_ENTERSUB = 184, - OP_LEAVESUB = 185, - OP_LEAVESUBLV = 186, - OP_ARGCHECK = 187, - OP_ARGELEM = 188, - OP_ARGDEFELEM = 189, - OP_CALLER = 190, - OP_WARN = 191, - OP_DIE = 192, - OP_RESET = 193, - OP_LINESEQ = 194, - OP_NEXTSTATE = 195, - OP_DBSTATE = 196, - OP_UNSTACK = 197, - OP_ENTER = 198, - OP_LEAVE = 199, - OP_SCOPE = 200, - OP_ENTERITER = 201, - OP_ITER = 202, - OP_ENTERLOOP = 203, - OP_LEAVELOOP = 204, - OP_RETURN = 205, - OP_LAST = 206, - OP_NEXT = 207, - OP_REDO = 208, - OP_DUMP = 209, - OP_GOTO = 210, - OP_EXIT = 211, + OP_ENTERSUB = 183, + OP_LEAVESUB = 184, + OP_LEAVESUBLV = 185, + OP_ARGCHECK = 186, + OP_ARGELEM = 187, + OP_ARGDEFELEM = 188, + OP_CALLER = 189, + OP_WARN = 190, + OP_DIE = 191, + OP_RESET = 192, + OP_LINESEQ = 193, + OP_NEXTSTATE = 194, + OP_DBSTATE = 195, + OP_UNSTACK = 196, + OP_ENTER = 197, + OP_LEAVE = 198, + OP_SCOPE = 199, + OP_ENTERITER = 200, + OP_ITER = 201, + OP_ENTERLOOP = 202, + OP_LEAVELOOP = 203, + OP_RETURN = 204, + OP_LAST = 205, + OP_NEXT = 206, + OP_REDO = 207, + OP_DUMP = 208, + OP_GOTO = 209, + OP_EXIT = 210, + OP_METHOD = 211, OP_METHOD_NAMED = 212, OP_METHOD_SUPER = 213, OP_METHOD_REDIR = 214, |