diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-12-07 17:11:21 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-12-07 17:32:36 -0800 |
commit | e6dae479a92dc835be9b026ea350a20b94199aa2 (patch) | |
tree | 5913265cf5fd1110d2a3844ea0ddecdc06c8d9ff /pad.c | |
parent | 1daa0c574de23f83ee2d6bba1bc312c165d72dee (diff) | |
download | perl-e6dae479a92dc835be9b026ea350a20b94199aa2.tar.gz |
Change OP_SIBLING to OpSIBLING
to match the existing convention (OpREFCNT, OpSLAB).
Dave Mitchell asked me to wait until after his multideref work
was merged.
Unfortunately, there are now CPAN modules using OP_SIBLING.
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2129,10 +2129,10 @@ S_cv_clone_pad(pTHX_ CV *proto, CV *cv, CV *outside, bool newcv) nextstate padsv */ - if (OP_SIBLING( + if (OpSIBLING( cUNOPx(cUNOPx(CvROOT(cv))->op_first)->op_first ) == o - && !OP_SIBLING(o)) + && !OpSIBLING(o)) { Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), |