From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1698) id 6AD2D3858C50; Wed, 4 Jan 2023 14:51:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6AD2D3858C50 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1672843882; bh=YJpnF/U3KofUoImJY04JmqrExMBldXxN0HEPI646MZ4=; h=From:To:Subject:Date:From; b=gZfmTT+p2ZX6Cr5MKvD2YdKVte2+fQfBgZ4cT8fRnwWoTVNQJFGiBK5pmBWtps0bn zwdPaq1OoG66xeveuYjzDLYzXxCtlyI+RGeL2tbHmbw8IUX0EV+TST80twQ5sUo9b2 hF7yLXSZTDA9KVeWFg9R648HYhUMbpl274yETL6s= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Iain D Sandoe To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4993] Modula-2, testsuite: No 96 bit floating type on Darwin. X-Act-Checkin: gcc X-Git-Author: Iain Sandoe X-Git-Refname: refs/heads/master X-Git-Oldrev: 8e7fc26f8aaaba966da07f4888b1e4eea06d4b23 X-Git-Newrev: 181afe5ca60930593e7556ea7f2a71c80f5f4dbf Message-Id: <20230104145122.6AD2D3858C50@sourceware.org> Date: Wed, 4 Jan 2023 14:51:22 +0000 (GMT) List-Id: https://gcc.gnu.org/g:181afe5ca60930593e7556ea7f2a71c80f5f4dbf commit r13-4993-g181afe5ca60930593e7556ea7f2a71c80f5f4dbf Author: Iain Sandoe Date: Sat Dec 31 13:59:41 2022 +0000 Modula-2, testsuite: No 96 bit floating type on Darwin. The realbitscast.mod is currently failing on x86_64 and aarch64 Darwin since they do not have a 96b floating type. Disable the type for all Darwin arches. gcc/testsuite/ChangeLog: * gm2/iso/pass/realbitscast.mod: Disable REAL96 on Darwin. Diff: --- gcc/testsuite/gm2/iso/pass/realbitscast.mod | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gcc/testsuite/gm2/iso/pass/realbitscast.mod b/gcc/testsuite/gm2/iso/pass/realbitscast.mod index 4da57777cee..438dc07bc64 100644 --- a/gcc/testsuite/gm2/iso/pass/realbitscast.mod +++ b/gcc/testsuite/gm2/iso/pass/realbitscast.mod @@ -28,11 +28,10 @@ FROM SYSTEM IMPORT CAST, WORD ; #elif defined(__ppc__) # undef HAVE_REAL96 #elif defined(__ia64) -# undef HAVE_REAL69 -#elif defined(__APPLE__) && defined(__i386__) # undef HAVE_REAL96 #elif defined(__APPLE__) -# define HAVE_REAL96 +(* No 96 bit floating type on Apple platforms *) +# undef HAVE_REAL96 #endif