2011-08-30 Tobias Burnus <burnus@net-b.de>
PR fortran/50163
* check_init_expr (check_init_expr): Return when an error
* occured.
2011-08-30 Tobias Burnus <burnus@net-b.de>
PR fortran/50163
* gfortran.dg/initialization_28.f90: New.
From-SVN: r178280
+2011-08-30 Tobias Burnus <burnus@net-b.de>
+
+ PR fortran/50163
+ * check_init_expr (check_init_expr): Return when an error occured.
+
2011-08-16 Paul Thomas <pault@gcc.gnu.org>
PR fortran/42051
m = MATCH_ERROR;
}
+ if (m == MATCH_ERROR)
+ return FAILURE;
+
/* Try to scalarize an elemental intrinsic function that has an
array argument. */
isym = gfc_find_function (e->symtree->n.sym->name);
+2011-08-30 Tobias Burnus <burnus@net-b.de>
+
+ PR fortran/50163
+ * gfortran.dg/initialization_28.f90: New.
+
2011-08-19 Tobias Burnus <burnus@net-b.de>
Backport from mainline
--- /dev/null
+! { dg-do compile }
+!
+! PR fortran/50163
+!
+! Contributed by Philip Mason
+!
+character(len=2) :: xx ='aa'
+integer :: iloc=index(xx,'bb') ! { dg-error "has not been declared or is a variable" }
+end