This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Oops...
- To: Richard Henderson <rth at twiddle dot net>
- Subject: Oops...
- From: Mark Mitchell <mark at codesourcery dot com>
- Date: Fri, 28 Jan 2000 12:02:51 -0800
- Cc: gcc-bugs at gcc dot gnu dot org
- Organization: CodeSourcery, LLC
Richard --
While your patch does fix the problem I was seeing with net16.C, it
causes crashes on other test-cases. I've appended an example. This
is g++.benjamin/p13417.C.
Thanks,
--
Mark Mitchell mark@codesourcery.com
CodeSourcery, LLC http://www.codesourcery.com
=====
struct A
{
~A ();
};
bool foo ();
int i;
int j;
A bar ()
{
for (i = 0; i < 1; ++i)
if (j)
{
A tmp;
return tmp;
}
}