[Bug ada/37328] [4.4 Regression] ACATS la14021 ICE in gimple_assign_set_rhs1, at gimple.h:1747
rguenth at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Tue Sep 2 13:21:00 GMT 2008
------- Comment #6 from rguenth at gcc dot gnu dot org 2008-09-02 13:20 -------
Probably the following will fix that...
*************** generate_copy_inout (struct sra_elt *elt
*** 2597,2604 ****
t = build2 (COMPLEX_EXPR, elt->type, r, i);
tmp_seq = sra_build_bf_assignment (expr, t);
! gcc_assert (gimple_seq_singleton_p (tmp_seq));
! SSA_NAME_DEF_STMT (expr) = gimple_seq_first_stmt (tmp_seq);
gimple_seq_add_seq (seq_p, tmp_seq);
}
else if (elt->replacement)
--- 2599,2605 ----
t = build2 (COMPLEX_EXPR, elt->type, r, i);
tmp_seq = sra_build_bf_assignment (expr, t);
! SSA_NAME_DEF_STMT (expr) = gimple_seq_last_stmt (tmp_seq);
gimple_seq_add_seq (seq_p, tmp_seq);
}
else if (elt->replacement)
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37328
More information about the Gcc-bugs
mailing list