diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-05-12 22:30:06 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-05-29 09:36:25 -0700 |
commit | abe56f58d6e4e4e24b5ecc880dddc33719cdd816 (patch) | |
tree | d66eb3bf2a142bedfdcf219ec3d3840e616c46f6 /opcode.h | |
parent | 89c5c07ef37776cd5a06bc62eaca97cb2091ad3f (diff) | |
download | perl-abe56f58d6e4e4e24b5ecc880dddc33719cdd816.tar.gz |
Make pos use ck_fun and OA_SCALARREF
See the previous commit. The same applies here.
In short, this allows core_prototype and pp_coreargs to be simpler.
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1362,7 +1362,7 @@ EXT Perl_check_t PL_check[] /* or perlvars.h */ Perl_ck_defined, /* defined */ Perl_ck_fun, /* undef */ Perl_ck_fun, /* study */ - Perl_ck_lfun, /* pos */ + Perl_ck_fun, /* pos */ Perl_ck_lfun, /* preinc */ Perl_ck_lfun, /* i_preinc */ Perl_ck_lfun, /* predec */ @@ -1748,7 +1748,7 @@ EXTCONST U32 PL_opargs[] = { 0x00009b84, /* defined */ 0x0000fb04, /* undef */ 0x00009b84, /* study */ - 0x00009b8c, /* pos */ + 0x0000fb8c, /* pos */ 0x00001164, /* preinc */ 0x00001144, /* i_preinc */ 0x00001164, /* predec */ |