diff options
author | Zefram <zefram@fysh.org> | 2017-12-05 21:24:19 +0000 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2017-12-05 21:24:19 +0000 |
commit | 16ea2c1905a8b12a3ddd72561c74de0063cbcc40 (patch) | |
tree | 25c1924d4d36685e57b580211a3cfb711c390a26 /pp_proto.h | |
parent | 40b0df696c4f45c9e0e43ec2121b53bc06a586db (diff) | |
download | perl-16ea2c1905a8b12a3ddd72561c74de0063cbcc40.tar.gz |
merge leavegiven op type into leaveloop
The leaveloop op type can already do the whole job, with leavegiven being
a near duplicate of it. Replace all uses of leavegiven with leaveloop.
Diffstat (limited to 'pp_proto.h')
-rw-r--r-- | pp_proto.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pp_proto.h b/pp_proto.h index 34fa56d959..2eb4bacbf3 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -134,7 +134,6 @@ PERL_CALLCONV OP *Perl_pp_lc(pTHX); PERL_CALLCONV OP *Perl_pp_le(pTHX); PERL_CALLCONV OP *Perl_pp_leave(pTHX); PERL_CALLCONV OP *Perl_pp_leaveeval(pTHX); -PERL_CALLCONV OP *Perl_pp_leavegiven(pTHX); PERL_CALLCONV OP *Perl_pp_leaveloop(pTHX); PERL_CALLCONV OP *Perl_pp_leavesub(pTHX); PERL_CALLCONV OP *Perl_pp_leavesublv(pTHX); |