diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-31 20:36:36 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-31 20:36:36 +0000 |
commit | 0b612f938c486fe63cc6e365cfa90d407732bbcc (patch) | |
tree | 58862224b6243030fd8a50655bd612e9d66c2faa /pp_ctl.c | |
parent | af51a00e97d5c55987039f94df86e106c0d31ef5 (diff) | |
download | perl-0b612f938c486fe63cc6e365cfa90d407732bbcc.tar.gz |
All the ops that are simply C<return some_other_op();> can be bypassed
in the op dispatch table, and the bodies retired.
p4raw-id: //depot/perl@25940
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 26 |
1 files changed, 0 insertions, 26 deletions
@@ -60,11 +60,6 @@ PP(pp_wantarray) } } -PP(pp_regcmaybe) -{ - return NORMAL; -} - PP(pp_regcreset) { /* XXXX Should store the old value to allow for tie/overload - and @@ -1724,11 +1719,6 @@ PP(pp_reset) RETURN; } -PP(pp_lineseq) -{ - return NORMAL; -} - /* like pp_nextstate, but used instead when the debugger is active */ PP(pp_dbstate) @@ -1790,11 +1780,6 @@ PP(pp_dbstate) return NORMAL; } -PP(pp_scope) -{ - return NORMAL; -} - PP(pp_enteriter) { dVAR; dSP; dMARK; @@ -2264,12 +2249,6 @@ S_dofindlabel(pTHX_ OP *o, const char *label, OP **opstack, OP **oplimit) return 0; } -PP(pp_dump) -{ - return pp_goto(); - /*NOTREACHED*/ -} - PP(pp_goto) { dVAR; dSP; @@ -3432,11 +3411,6 @@ PP(pp_require) return op; } -PP(pp_dofile) -{ - return pp_require(); -} - PP(pp_entereval) { dVAR; dSP; |