This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug optimization/12547] [tree-ssa] Libjava-failure with CVS-version on FreeBSD
- From: "dnovillo at redhat dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 9 Oct 2003 19:37:45 -0000
- Subject: [Bug optimization/12547] [tree-ssa] Libjava-failure with CVS-version on FreeBSD
- References: <20031009100712.12547.lsjoberg@aland.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12547
------- Additional Comments From dnovillo at redhat dot com 2003-10-09 19:37 -------
Subject: Re:
-----Forwarded Message-----
From: Jeff Sturm <jsturm@one-point.com>
To: Diego Novillo <dnovillo@redhat.com>
Cc: Andrew Haley <aph@redhat.com>, gcc-patches@gcc.gnu.org <gcc-patches@gcc.gnu.org>
Subject: Re: [tree-ssa] gimplifier problem in libjava
Date: Thu, 09 Oct 2003 14:53:31 -0400
On Thu, 9 Oct 2003, Diego Novillo wrote:
> The problem is that gimplify_expr is asked to gimplify the inner
> COND_EXPR into a gimple value, which it can't do.
Indeed. In case anyone is looking at it, here's a reduced test case.
Compile with -fcheck-references:
class Bug {
void exec(String[] cmd, String str) { cmd[0] = str; }
}
Jeff