re PR fortran/85641 (ICE with string concatenate)
authorThomas Koenig <tkoenig@gcc.gnu.org>
Wed, 6 Jun 2018 21:41:29 +0000 (21:41 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Wed, 6 Jun 2018 21:41:29 +0000 (21:41 +0000)
2018-06-06  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/85641
* frontend-passes.c (is_fe_temp): Add prototype.
(realloc_string_callback): Early return for frontend-generated
temporary.

2018-06-06  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/85641
* gfortran.dg/realloc_on_assign_30.f90: New test.

From-SVN: r261248

gcc/fortran/ChangeLog
gcc/fortran/frontend-passes.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/realloc_on_assign_30.f90 [new file with mode: 0644]

index 23a406505837a16d6e09b7e497cc3957bf3a2b1d..e69ff8e4f4284600bea323226d5d809a9152a5cf 100644 (file)
@@ -1,3 +1,10 @@
+2018-06-06  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/85641
+       * frontend-passes.c (is_fe_temp): Add prototype.
+       (realloc_string_callback): Early return for frontend-generated
+       temporary.
+
 2018-06-05  Cesar Philippidis  <cesar@codesourcery.com>
 
        PR fortran/85701
index 40e88b1a7d4263415360049fb4d5705f865ef47c..c13366cf138276fc3817d1a38b5ea1d6930954a9 100644 (file)
@@ -57,6 +57,8 @@ static bool has_dimen_vector_ref (gfc_expr *);
 static int matmul_temp_args (gfc_code **, int *,void *data);
 static int index_interchange (gfc_code **, int*, void *);
 
+static bool is_fe_temp (gfc_expr *e);
+
 #ifdef CHECKING_P
 static void check_locus (gfc_namespace *);
 #endif
@@ -254,6 +256,9 @@ realloc_string_callback (gfc_code **c, int *walk_subtrees ATTRIBUTE_UNUSED,
       || !expr1->ts.deferred)
     return 0;
 
+  if (is_fe_temp (expr1))
+    return 0;
+
   expr2 = gfc_discard_nops (co->expr2);
 
   if (expr2->expr_type == EXPR_VARIABLE)
index 32c661d74c3bd48a192d9a60a98d796a54b1bea7..41b78f28a285795ead0f21075441b879420d0978 100644 (file)
@@ -1,3 +1,8 @@
+2018-06-06  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/85641
+       * gfortran.dg/realloc_on_assign_30.f90: New test.
+
 2018-06-06  Carl Love  <cel@us.ibm.com>
 
        * gcc.target/powerpc/builtins-3.c: Move tests requiring -mvsx
diff --git a/gcc/testsuite/gfortran.dg/realloc_on_assign_30.f90 b/gcc/testsuite/gfortran.dg/realloc_on_assign_30.f90
new file mode 100644 (file)
index 0000000..4e7eb4b
--- /dev/null
@@ -0,0 +1,13 @@
+! { dg-do compile }
+! PR 85641 - this used to ICE due do infinite recursion.
+! Test case by Antony Lewis.
+program tester
+character(LEN=:), allocatable :: fields
+integer j
+character(LEN=4), parameter :: CMB_CL_Fields = 'TEBP'
+
+fields = ''
+j=1
+fields = fields // CMB_CL_Fields(j:j)
+
+end program tester