summaryrefslogtreecommitdiff
path: root/perly.h
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.h
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.h')
-rw-r--r--perly.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/perly.h b/perly.h
index 0c19d29aa7..73dc4b842c 100644
--- a/perly.h
+++ b/perly.h
@@ -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;