This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
internal error 364
- To: egcs at cygnus dot com
- Subject: internal error 364
- From: Tudor Hulubei <tudor at cs dot unh dot edu>
- Date: Fri, 5 Dec 1997 20:54:36 -0500
- Reply-To: Tudor Hulubei <tudor at cs dot unh dot edu>
Hi,
The following program generates an internal error with the 971127
snapshot:
#include <vector>
int
main()
{
int i;
vector<int&> v;
v.push_back(i);
return 0;
}
/home/tudor/usr/include/g++/stl_vector.h: In method `void vector<int &,__default_alloc_template<false,0> >::push_back(int &const &)':
/home/tudor/usr/include/g++/stl_vector.h:146: Internal compiler error 364.
/home/tudor/usr/include/g++/stl_vector.h:146: Please submit a full bug report to `egcs-bugs@cygnus.com'.
Is this a known problem?
Thanks,
Tudor