summaryrefslogtreecommitdiff
path: root/perly.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2006-12-11 11:41:10 +0000
committerDave Mitchell <davem@fdisolutions.com>2006-12-11 11:41:10 +0000
commitc79bbeaf9959de37889eda1f77c9af1212f538ec (patch)
tree197cd467763c95b93fd7ed0be68771bc7ec472ec /perly.c
parent910ad8ddac314a1e7431e609ac34bf3a0adc304b (diff)
downloadperl-c79bbeaf9959de37889eda1f77c9af1212f538ec.tar.gz
remove extraneous debugging code introduced by #29504
p4raw-id: //depot/perl@29508
Diffstat (limited to 'perly.c')
-rw-r--r--perly.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/perly.c b/perly.c
index bc83ab48ee..b0c8bab75d 100644
--- a/perly.c
+++ b/perly.c
@@ -676,23 +676,6 @@ Perl_yyparse (pTHX)
yyssp++;
*yyssp = yystate;
YY_STACK_PRINT (yyss, yyssp, yyvs, yyns);
- if (yydebug && DEBUG_v_TEST)
- {
- /* XXX */
- int i;
- int start = 1;
- int count = (int)(yyssp - yyss);
-
- if (count > 8) {
- start = count - 8 + 1;
- count = 8;
- }
-
- PerlIO_printf(Perl_debug_log, "cppad:");
- for (i=0; i < count; i++)
- PerlIO_printf(Perl_debug_log, " %8p", yyps[start+i]);
- PerlIO_printf(Perl_debug_log, "\n");
- }
yyssp--;
#endif
@@ -826,23 +809,6 @@ Perl_yyparse (pTHX)
yystate = *--yyssp;
YY_STACK_PRINT (yyss, yyssp, yyvs, yyns);
- if (yydebug && DEBUG_v_TEST)
- {
- /* XXX */
- int i;
- int start = 1;
- int count = (int)(yyssp - yyss);
-
- if (count > 8) {
- start = count - 8 + 1;
- count = 8;
- }
-
- PerlIO_printf(Perl_debug_log, "cppad:");
- for (i=0; i < count; i++)
- PerlIO_printf(Perl_debug_log, " %8p", yyps[start+i]);
- PerlIO_printf(Perl_debug_log, "\n");
- }
}
if (yyn == YYFINAL)