This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Internal compiler error in function expand_expr
- To: egcs-bugs at egcs dot cygnus dot com
- Subject: Internal compiler error in function expand_expr
- From: Martin von Loewis <loewis at informatik dot hu-berlin dot de>
- Date: Thu, 25 Feb 1999 17:43:32 +0100
On sparc-sun-solaris2.5.1, using egcs-2.93.09 19990223, I get
<path>/expr.c:5861: Internal compiler error in function expand_expr
for the source
class A
{
public:
virtual ~A();
A(){}
};
class B {
public:
B ();
};
B::B(){
static A as[4];
}
This happens somewhere inside the destructor that is going to be
registered with atexit; although I'm lost when trying to find the
actual cause of the crash.
Regards,
Martin