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 /regen | |
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 'regen')
-rw-r--r-- | regen/opcodes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regen/opcodes b/regen/opcodes index 23c8cdc439..f1e439d0be 100644 --- a/regen/opcodes +++ b/regen/opcodes @@ -292,7 +292,6 @@ andassign logical and assignment (&&=) ck_null s| orassign logical or assignment (||=) ck_null s| dorassign defined or assignment (//=) ck_null s| -method method lookup ck_method d. entersub subroutine entry ck_subr dm1 L leavesub subroutine exit ck_null 1 leavesublv lvalue subroutine return ck_null 1 @@ -322,6 +321,7 @@ redo redo ck_null s} dump dump ck_null ds} goto goto ck_null s} exit exit ck_fun s% S? +method method lookup ck_method d. method_named method with known name ck_null d. method_super super with known name ck_null d. method_redir redirect method with known name ck_null d. |