https://gcc.gnu.org/g:a039db39860a1ec6084d6a0bdab8ceef51ed36a9
commit a039db39860a1ec6084d6a0bdab8ceef51ed36a9 Author: Mikael Morin <mik...@gcc.gnu.org> Date: Fri Mar 14 16:30:09 2025 +0100 Correction erreur compil' Diff: --- gcc/fortran/trans-array.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/fortran/trans-array.cc b/gcc/fortran/trans-array.cc index 0522b1bc6e49..05a2fa080ee7 100644 --- a/gcc/fortran/trans-array.cc +++ b/gcc/fortran/trans-array.cc @@ -11547,7 +11547,7 @@ gfc_full_array_size (stmtblock_t *block, tree decl, int rank) tree nelems; tree tmp; if (rank < 0) - idx = gfc_conv_descriptor_rank (decl); + idx = gfc_conv_descriptor_rank_get (decl); else idx = gfc_rank_cst[rank - 1]; tmp = gfc_conv_descriptor_extent_get (decl, idx);