From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 60704 invoked by alias); 17 Jul 2017 16:11:10 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 60689 invoked by uid 89); 17 Jul 2017 16:11:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-7.5 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=this!, santos, Santos, fashioned X-HELO: sasl.smtp.pobox.com Received: from pb-smtp2.pobox.com (HELO sasl.smtp.pobox.com) (64.147.108.71) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 17 Jul 2017 16:11:08 +0000 Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 2C5259AB20; Mon, 17 Jul 2017 12:11:05 -0400 (EDT) Received: from pb-smtp2.nyi.icgroup.com (unknown [127.0.0.1]) by pb-smtp2.pobox.com (Postfix) with ESMTP id 210EA9AB1F; Mon, 17 Jul 2017 12:11:05 -0400 (EDT) Received: from [192.168.1.4] (unknown [76.215.41.237]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pb-smtp2.pobox.com (Postfix) with ESMTPSA id 09FA89AB1E; Mon, 17 Jul 2017 12:11:03 -0400 (EDT) From: Daniel Santos Subject: PING: [PATCH v2 0/2] [testsuite, libgcc] PR80759 Fix FAILs on Solaris and Darwin To: Uros Bizjak , Mike Stump , Iain Sandoe , Ian Lance Taylor References: <3c867dc8-7d4a-ae82-c875-d03ff6d88776@pobox.com> <57df17f5-1714-a618-30a9-086c83ee7623@pobox.com> Cc: gcc-patches , Rainer Orth Message-ID: Date: Mon, 17 Jul 2017 16:11:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <57df17f5-1714-a618-30a9-086c83ee7623@pobox.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Pobox-Relay-ID: 88A51338-6B0A-11E7-8BE0-61520C78B957-06139138!pb-smtp2.pobox.com X-IsSubscribed: yes X-SW-Source: 2017-07/txt/msg00987.txt.bz2 https://gcc.gnu.org/ml/gcc-patches/2017-07/msg00025.html Uros, Can you review changes for i386 please? Mike or Iain, Can one of you review changes for Darwin please? I'm not familiar with the platform, although Rainer tested on Darwin for me. Ian, Can you review changes to libgcc please? Thank you all! Daniel On 07/02/2017 12:11 AM, Daniel Santos wrote: > This patchset addresses a number of testsuite issues for > gcc.target/x86_64/abi/ms-sysv/ms-sysv.exp, mostly occurring on Solaris > and Darwin. Additionally, it solves a bug in libgcc that caused link > failures on Darwin when building with -mcall-ms2sysv-xlogues. The > issues are detailed in the notes for each patch. > > I would particularly appreciate any feedback for Darwin as I am > unfamiliar with the platform and Rainer and I have fashioned some of > these changes by looking at other Darwin code in gcc. > > .../gcc.target/x86_64/abi/ms-sysv/do-test.S | 200 > ++++++++----------- > .../gcc.target/x86_64/abi/ms-sysv/ms-sysv.c | 83 +++++++- > .../gcc.target/x86_64/abi/ms-sysv/ms-sysv.exp | 153 +++++--------- > libgcc/config.host | 6 +- > libgcc/config/i386/i386-asm.h | 89 +++++---- > libgcc/config/i386/resms64.S | 2 +- > libgcc/config/i386/resms64f.S | 2 +- > libgcc/config/i386/resms64fx.S | 2 +- > libgcc/config/i386/resms64x.S | 2 +- > libgcc/config/i386/savms64.S | 2 +- > libgcc/config/i386/savms64f.S | 2 +- > 11 files changed, 274 insertions(+), 269 deletions(-) > > > Many thanks to Rainer for all of his help on this! > > Thanks, > Daniel