From: Francois-Xavier Coudert Date: Sun, 6 Sep 2020 16:36:20 +0000 (+0200) Subject: fortran: Add comment about previous commit X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=23f8b90c401842afcbaa50a7fd3c2f37818f4396;p=gcc.git fortran: Add comment about previous commit gcc/fortran/ChangeLog * trans-types.c (gfc_get_ppc_type): Add comment. --- diff --git a/gcc/fortran/trans-types.c b/gcc/fortran/trans-types.c index a05633e827c..ecc4454bb63 100644 --- a/gcc/fortran/trans-types.c +++ b/gcc/fortran/trans-types.c @@ -2435,6 +2435,8 @@ gfc_get_ppc_type (gfc_component* c) else t = void_type_node; + /* FIXME: it would be better to provide explicit interfaces in all + cases, since they should be known by the compiler. */ return build_pointer_type (build_function_type (t, NULL_TREE)); }