------- Comment #13 from pinskia at gcc dot gnu dot org 2008-09-02 03:13
-------
Here is a reduced testcase for the next failure:
int& f(int&);
inline void _M_reset(int &_M_vbp) throw()
{
f(_M_vbp);
}
extern int _S_last_request;
void _M_allocate_single_object() throw()
{
_M_reset(_S_last_request);
_M_reset(_S_last_request);
}-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37293
