This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Regression for trunk on i686-pc-linux-gnu
- From: kenner at vlsi1 dot ultra dot nyu dot edu (Richard Kenner)
- To: dnovillo at redhat dot com
- Cc: gcc at gcc dot gnu dot org
- Date: Tue, 27 Jul 04 15:41:31 EDT
- Subject: Re: Regression for trunk on i686-pc-linux-gnu
cvs up -D20040722 tree.def tree-ssa-operands.c gimplify.c tree-gimple.c
ought to give you a working compiler.
OK, it was a typo in tree-gimple.c. But I can't test it since the
tree is broken on my machine. Seems obviously the error, though:
*** tree-gimple.c 24 Jul 2004 01:29:11 -0000 2.18
--- tree-gimple.c 27 Jul 2004 19:38:10 -0000
*************** is_gimple_addr_expr_arg (tree t)
*** 324,328 ****
{
return (is_gimple_id (t) || handled_component_p (t)
! || TREE_CODE (t) == REALPART_EXPR || TREE_CODE (t) == IMAGPART_EXPR);
}
--- 324,329 ----
{
return (is_gimple_id (t) || handled_component_p (t)
! || TREE_CODE (t) == REALPART_EXPR || TREE_CODE (t) == IMAGPART_EXPR
! || TREE_CODE (t) == INDIRECT_REF);
}