From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 555133858416 for ; Wed, 12 Jan 2022 11:07:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 555133858416 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-48-LltjN2OpNKKvFXOSDGtoiQ-1; Wed, 12 Jan 2022 06:07:03 -0500 X-MC-Unique: LltjN2OpNKKvFXOSDGtoiQ-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 42A81835E23; Wed, 12 Jan 2022 11:07:02 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.39.195.246]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 863D68049F; Wed, 12 Jan 2022 11:07:01 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.16.1/8.16.1) with ESMTPS id 20CB6wVv506314 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT); Wed, 12 Jan 2022 12:06:58 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.16.1/8.16.1/Submit) id 20CB6vqV506313; Wed, 12 Jan 2022 12:06:57 +0100 Date: Wed, 12 Jan 2022 12:06:57 +0100 From: Jakub Jelinek To: FX Cc: gcc-patches@gcc.gnu.org, Harald Anlauf , fortran@gcc.gnu.org, schwab@suse.de Subject: Re: [PATCH] Fortran: make IEEE_CLASS recognize signaling NaNs Message-ID: <20220112110657.GL2646553@tucnak> Reply-To: Jakub Jelinek References: <2F9F946D-C06C-4D3A-AD24-33913F040B3B@gmail.com> <2AC9FA3C-2E70-4A5B-B612-FDF0E00BA845@gmail.com> <20220112103419.GK2646553@tucnak> <6351EB47-FD7E-4A56-B435-0B90B10436BA@gmail.com> MIME-Version: 1.0 In-Reply-To: <6351EB47-FD7E-4A56-B435-0B90B10436BA@gmail.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.5 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_SHORT, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: fortran@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Fortran mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2022 11:07:07 -0000 On Wed, Jan 12, 2022 at 12:03:40PM +0100, FX wrote: > > We need -fintrinsic-modules-path option for the signalling_1.f90 compilation > > but need to make sure it isn't used when the *.c file is compiled, so they > > need to be compiled by separate compiler invocations probably. > > Thanks for posting the errors! So I wasn’t seeing it because I had run > “make install” before the testsuite. The patch I pushed at > https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=6b14100b9504800768da726dcb81f1857db3b493 > should fix the failure, then. Thanks. Just a nit, it is cc1 that reports the warning, not f951. Jakub