This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa] gimplifier problem in libjava
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Diego Novillo <dnovillo at redhat dot com>
- Cc: Andrew Haley <aph at redhat dot com>, "gcc-patches at gcc dot gnu dot org" <gcc-patches at gcc dot gnu dot org>
- Date: Thu, 9 Oct 2003 14:53:31 -0400 (EDT)
- Subject: Re: [tree-ssa] gimplifier problem in libjava
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