[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: bison-2a note
From: |
Paul Eggert |
Subject: |
Re: bison-2a note |
Date: |
Thu, 06 Jan 2005 17:06:00 -0800 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) |
address@hidden writes:
> noticed from the bison cvs version of today in generated output
> that YYSIZE_T yystacksize = YYINITDEPTH; is
> in yyparse() and also used casted to (unsigned long int)
> YYDPRINTF ((stderr, "Stack size increased to %lu\n",
> (unsigned long int) yystacksize));
> could this ever lead to a bug or hidden 32bits dependacy?
I don't see why. The only problem would be if YYSIZE_T is wider than
unsigned long int, and the GNU coding standards currently say we don't
need to worry about hosts where size_t is wider than long int.
- bison-2a note, twlevo, 2005/01/06
- Re: bison-2a note,
Paul Eggert <=