summaryrefslogtreecommitdiff
path: root/perly.y
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2006-12-10 17:18:00 +0000
committerDave Mitchell <davem@fdisolutions.com>2006-12-10 17:18:00 +0000
commitd5c6462ec54f07680e7532435b71727ae3075024 (patch)
tree9313e705118463248715dffd61f1a841d4fcc069 /perly.y
parent88517a295e2cbde1046f3c95e6e78054c21985fa (diff)
downloadperl-d5c6462ec54f07680e7532435b71727ae3075024.tar.gz
parser: expand yy_is_opval[] to include all value types
and rename to yy_type_tab[]. Then use this table to improve stack dumping with -Dpv p4raw-id: //depot/perl@29500
Diffstat (limited to 'perly.y')
-rw-r--r--perly.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/perly.y b/perly.y
index 231c22ff42..af62341bba 100644
--- a/perly.y
+++ b/perly.y
@@ -43,7 +43,8 @@
%start prog
%union {
- I32 ival;
+ I32 ival; /* __DEFAULT__ (marker for regen_perly.pl;
+ must always be 1st union member) */
char *pval;
OP *opval;
GV *gvval;