------- Comment #7 from pinskia at gcc dot gnu dot org 2006-12-26 22:56 ------- Here is the patch which I am going to test in the new year: Index: gimplify.c =================================================================== --- gimplify.c (revision 120211) +++ gimplify.c (working copy) @@ -1013,8 +1013,9 @@ /* The wrapper is on the RHS of an assignment that we're pushing down. */ gcc_assert (TREE_CODE (temp) == INIT_EXPR - || TREE_CODE (temp) == MODIFY_EXPR); - TREE_OPERAND (temp, 1) = *p; + || TREE_CODE (temp) == MODIFY_EXPR + || TREE_CODE (temp) == GIMPLE_MODIFY_STMT); + GENERIC_TREE_OPERAND (temp, 1) = *p; *p = temp; } else
-- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at gcc dot gnu |pinskia at gcc dot gnu dot |dot org |org Status|NEW |ASSIGNED Component|c++ |middle-end Last reconfirmed|2006-12-21 18:45:00 |2006-12-26 22:56:35 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30253