summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-10-31 20:36:36 +0000
committerNicholas Clark <nick@ccl4.org>2005-10-31 20:36:36 +0000
commit0b612f938c486fe63cc6e365cfa90d407732bbcc (patch)
tree58862224b6243030fd8a50655bd612e9d66c2faa /pp_ctl.c
parentaf51a00e97d5c55987039f94df86e106c0d31ef5 (diff)
downloadperl-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.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index e8d89d5b4f..8a6c3e5745 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -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;