This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa] bootstrap problem on powerpc-apple-darwin6.6
On Thu, 21 Aug 2003 12:12:24 -0400, Andrew Pinski <pinskia@physics.uc.edu> wrote:
> I think the problem is that the rewrite of "if (a); else b" to "if (!a) b"
> should really be to "if (a!=0) b".
> This is in gimplify_cond_expr on line 1972 in gimplify.c.
> Maybe someone else will know what is going on.
> Here is what arg is when passed to invert_thruthvalue:
>[...]
> See that it is a integer_type and not a boolean_type so something needs to
> change.
Why isn't the call to gimple_boolify earlier in the function working?
Jason