gcc/fortran/ChangeLog:
2020-04-15 Fritz Reese <foreese@gcc.gnu.org>
Linus Koenig <link@sig-st.de>
PR fortran/94192
* simplify.c (simplify_bound): Simplify condition for error check.
+2020-04-15 Fritz Reese <foreese@gcc.gnu.org>
+ Linus Koenig <link@sig-st.de>
+
+ PR fortran/94192
+ * simplify.c (simplify_bound): Simplify condition for error check.
+
2020-04-14 Tobias Burnus <tobias@codesourcery.com>
* module.c (gfc_match_use): Fix name-conflict check for use-associating
gfc_array_spec *as;
int d;
- /* Do not attempt to resolve if error has already been issued. */
- if (array->symtree && array->symtree->n.sym->error)
- return NULL;
-
if (array->ts.type == BT_CLASS)
return NULL;
goto done;
}
+ /* Do not attempt to resolve if error has already been issued. */
+ if (array->symtree->n.sym->error)
+ return NULL;
+
/* Follow any component references. */
as = array->symtree->n.sym->as;
for (ref = array->ref; ref; ref = ref->next)