aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/interface.c
diff options
context:
space:
mode:
authorSandra Loosemore <sandra@codesourcery.com>2020-09-19 07:32:35 -0700
committerSandra Loosemore <sandra@codesourcery.com>2020-09-19 13:54:16 -0700
commita85e5696a31cac8c14dde14f031e76480205f8a0 (patch)
tree641ac163c58884fdc6ac9520a06a505a5a03930b /gcc/fortran/interface.c
parent83e037364e0d6dd74d595751e8bc8c461b4cb8fa (diff)
downloadgcc-a85e5696a31cac8c14dde14f031e76480205f8a0.zip
gcc-a85e5696a31cac8c14dde14f031e76480205f8a0.tar.gz
gcc-a85e5696a31cac8c14dde14f031e76480205f8a0.tar.bz2
Work around bootstrap failure in Fortran front end.
Switching the C++ front end to lower loops the same was as the C front end triggered this error when bootstrapping the Fortran front end: /path/to/gcc/fortran/interface.c:3546:12: error: '*new_arg' may be used uninitialized [-Werror=maybe-uninitialized] 3546 | new_arg[i]->next = NULL; | ~~~~~~~~~^ Work around this by adding an assertion, which seems appropriate for documentation and good coding practices anyway. 2020-08-12 Sandra Loosemore <sandra@codesourcery.com> gcc/fortran/ * interface.c (gfc_compare_actual_formal): Add assertion after main processing loop to silence maybe-uninitialized error.
Diffstat (limited to 'gcc/fortran/interface.c')
-rw-r--r--gcc/fortran/interface.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/fortran/interface.c b/gcc/fortran/interface.c
index 020cdd7..e2cc76f 100644
--- a/gcc/fortran/interface.c
+++ b/gcc/fortran/interface.c
@@ -3530,6 +3530,10 @@ gfc_compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
}
}
+ /* We should have handled the cases where the formal arglist is null
+ already. */
+ gcc_assert (n > 0);
+
/* The argument lists are compatible. We now relink a new actual
argument list with null arguments in the right places. The head
of the list remains the head. */