https://gcc.gnu.org/g:771322f349966bcfb997bf37e20bc7316a7dc6b1
commit 771322f349966bcfb997bf37e20bc7316a7dc6b1 Author: Mikael Morin <mik...@gcc.gnu.org> Date: Fri May 2 14:40:25 2025 +0200 Correction régressions realloc_on_assign_{10,11} Diff: --- gcc/fortran/trans-descriptor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/fortran/trans-descriptor.cc b/gcc/fortran/trans-descriptor.cc index b58c90e073af..5f40e0e5f8c2 100644 --- a/gcc/fortran/trans-descriptor.cc +++ b/gcc/fortran/trans-descriptor.cc @@ -2458,7 +2458,7 @@ gfc_conv_shift_descriptor (stmtblock_t *block, tree dest, tree src, int rank, tree zero_cond) { conv_shift_descriptor (block, src, dest, rank, - cond_descr_lb (src, zero_cond)); + cond_descr_lb (dest, zero_cond)); }