]> git.saurik.com Git - bison.git/commit
c++: reserve 200 slots in the parser's stack
authorAkim Demaille <akim@lrde.epita.fr>
Tue, 20 Jan 2015 19:41:57 +0000 (20:41 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Tue, 20 Jan 2015 19:45:48 +0000 (20:45 +0100)
commit573654ca9e8bc3ad9f5a00820417edcbca6e14dc
tree54fa97b51ef750c9c31f4c4e674ec7dc0d1b6014
parent0b0370ff42af17689da7edf28294a5262e450610
c++: reserve 200 slots in the parser's stack

This is consistent with what is done with yacc.c and glr.c.  Because
it also avoids that the stack needs to be resized very soon, it should
help keeping tests about destructors more reliable.

Indeed, if the stack is created too small, very soon the C++ library
needs to enlarge it, which means creating a new one, copying the
elements from the initial one onto it, and then destroy the elements
of the initial stack: that would be a spurious call to a destructor.

Reported by Thomas Jahns.
http://lists.gnu.org/archive/html/bug-bison/2015-01/msg00059.html

* data/stack.hh (stack::stack): Reserve 200 slots.
* tests/c++.at: Remove traces of stack expansions.
data/stack.hh
tests/c++.at