diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-12-10 17:18:00 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-12-10 17:18:00 +0000 |
commit | d5c6462ec54f07680e7532435b71727ae3075024 (patch) | |
tree | 9313e705118463248715dffd61f1a841d4fcc069 /perly.h | |
parent | 88517a295e2cbde1046f3c95e6e78054c21985fa (diff) | |
download | perl-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.h')
-rw-r--r-- | perly.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -187,7 +187,8 @@ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { - I32 ival; + I32 ival; /* __DEFAULT__ (marker for regen_perly.pl; + must always be 1st union member) */ char *pval; OP *opval; GV *gvval; |