https://gcc.gnu.org/g:9471ec4e8dace2e1127306dd5176f4379b6344ad
commit 9471ec4e8dace2e1127306dd5176f4379b6344ad Author: Mikael Morin <[email protected]> Date: Sun Sep 28 23:04:45 2025 +0200 Ajout noms arguments par défaut. Diff: --- gcc/fortran/trans-descriptor.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/fortran/trans-descriptor.h b/gcc/fortran/trans-descriptor.h index 744c264a986b..1b85e3004736 100644 --- a/gcc/fortran/trans-descriptor.h +++ b/gcc/fortran/trans-descriptor.h @@ -116,7 +116,8 @@ void gfc_conv_remap_descriptor (stmtblock_t *, tree, int, tree, bool, void gfc_set_descriptor_from_scalar_class (stmtblock_t *, tree, tree, gfc_expr *); void gfc_set_descriptor_from_scalar (stmtblock_t *, tree, tree, symbol_attribute, - tree = NULL_TREE, tree = NULL_TREE); + tree cond_presence = NULL_TREE, + tree caf_token = NULL_TREE); void gfc_set_descriptor_from_scalar (stmtblock_t *, tree, tree, gfc_expr *, tree, tree);
