From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.smtpout.orange.fr (smtp-23.smtpout.orange.fr [80.12.242.23]) by sourceware.org (Postfix) with ESMTPS id 5993C3858C2C for ; Fri, 1 Dec 2023 20:24:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5993C3858C2C Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=orange.fr Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=orange.fr ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 5993C3858C2C Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=80.12.242.23 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1701462295; cv=none; b=tjROrpvW2gICk8BUIeo+usLkFPTfun9iKlu7gO2okrRk3fSCckdHZUt9V3LrBzBLc4qGf2s9YbRRU6hrPAY5gKd+KQRuwal4Se1aMaPxz7Sh7lerBsgmxCBOHz1l/ahclfoT8mezFv+xQzjdms1roidezSH80CsZiCsUIZcRNRQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1701462295; c=relaxed/simple; bh=odN4r02/f6AsTTbxmM/M/LiFFkGrsm3pY+jnFmZE6eU=; h=DKIM-Signature:Message-ID:Date:MIME-Version:Subject:To:From; b=pPUMPSuPnqFHCaR+sGkc1Xbw6gwNzIFOFIjdk9U3cbspuyPlXJqmKzUmCX1V0/OWGNYyailJRnGE9WZ4XQmby7kjQKN+ngpuIvfPQ/uV6Ibjw84l4zWmXXbtJQOQmWeA1myphorBvjyvT79kLiTjcYs1wm+wCvNJ+Xe3AV1N6U8= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from [192.168.1.13] ([86.215.161.51]) by smtp.orange.fr with ESMTPA id 9A3yrE4LbvY3y9A42rfBMy; Fri, 01 Dec 2023 21:24:43 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=orange.fr; s=t20230301; t=1701462283; bh=M94RKUIzPU4BSbIBZTIH1heBvGeyRQFXWJVytltyZLk=; h=Date:Subject:To:References:From:In-Reply-To; b=uEsmX/L6IepAcZgcd/3hxTyQtL21L/+NekiNjmECrLtHrjFNqu08GmiDPF8OUgrim lySdvIzO4JnWcn8oSDbtt47SRWmurcUx72aEyujQQDWvXX/TnFXqvaqm2sA7sNMEot IKq+qTLHPQ9MgDq9TggsBC58WzltTAoBRN/kQG9HxLZMQdSvNubevFhOetUANEUwmb 4Hn2x38RSzXkZaaFUDBsxvXrSGstBDZWJwwf9w1qudgiSwCW0nM/nNRW2v2N4lvgcl HEuCZ7hh0+T1ssJEPbQbYmB6wF58a1UzmtAKyIuHRhe8Mf01XHkpgwc2YTCiKUgNxW U1ZUAyNBtdlqA== X-ME-Helo: [192.168.1.13] X-ME-Auth: bW9yaW4tbWlrYWVsQG9yYW5nZS5mcg== X-ME-Date: Fri, 01 Dec 2023 21:24:43 +0100 X-ME-IP: 86.215.161.51 Message-ID: <0d7703fb-9e35-4ccd-a7f0-f9e72afc517a@orange.fr> Date: Fri, 1 Dec 2023 21:24:37 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] Fortran: copy-out for possibly missing OPTIONAL CLASS arguments [PR112772] To: Harald Anlauf , fortran , gcc-patches References: Content-Language: fr From: Mikael Morin In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-4.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FORGED_SPF_HELO,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,TXREP,T_SCC_BODY_TEXT_LINE,T_SPF_TEMPERROR autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hello, Le 30/11/2023 à 22:06, Harald Anlauf a écrit : > the attached rather obvious patch fixes the first testcase of pr112772: > we unconditionally generated copy-out code for optional class arguments, > while the copy-in properly checked the presence of arguments. > > Regtested on x86_64-pc-linux-gnu. OK for mainline? > Looks good. Thanks. > (The second testcase is a different issue.) > Maybe use a separate PR? Mikael