diff mbox

[fortran] Bug 71764 - [4.9/5/6/7 Regression] ICE in gfc_trans_structure_assign

Message ID 7ef15c79-e65d-fdbd-0ef3-b03cbd3540a1@charter.net
State New
Headers show

Commit Message

Jerry DeLisle July 8, 2016, 4:09 a.m. UTC
This trivial patch removes the problem. As far as I can tell, looking at 
-fdump-tree-original, the results are correct.

Regression tested on x86-64.  I will add a test case from the PR.

I plan to commit to trunk and then backport after about a week if no 
problems show up.

Regards,

Jerry

2016-07-07  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/71764
	* trans-expr.c (gfc_trans_structure_assign): Remove assert.


        gfc_conv_expr (&se, gfc_constructor_first 
(expr->value.constructor)->expr);
diff mbox

Patch

diff --git a/gcc/fortran/trans-expr.c b/gcc/fortran/trans-expr.c
index b5731aa8..4321850b 100644
--- a/gcc/fortran/trans-expr.c
+++ b/gcc/fortran/trans-expr.c
@@ -7358,7 +7358,6 @@  gfc_trans_structure_assign (tree dest, gfc_expr * 
expr, bool init)
      {
        gfc_se se, lse;

-      gcc_assert (cm->backend_decl == NULL);
        gfc_init_se (&se, NULL);
        gfc_init_se (&lse, NULL);