From patchwork Wed May 20 23:54:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alan Modra X-Patchwork-Id: 474699 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id B6857140281 for ; Thu, 21 May 2015 09:54:57 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=EqX6Tk2j; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:references:mime-version:content-type :in-reply-to; q=dns; s=default; b=L0H6M800CI4Gkq8gtIqpkbvQwgTA2z sd292ictqlyDW605VXDLtFJ09RFa1ZpDB0auyzJ7FagoAUrn5QEb22Kcy0vMnbU4 mL0DjTpqpV8Hd+FbHVrrKolAiiZkbJ9M2gu1J+kmug+demmLr//PufXPpBipyuAv YLD+b+yHYa8OY= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:references:mime-version:content-type :in-reply-to; s=default; bh=P5nfhPL5b3So+6mi7F0EVrOzO0Q=; b=EqX6 Tk2jXOHbEwHASvCPyJxsxrgCwkFookaVNS315ARFPRThTGksX9Awib+bUD1DsGxg 7fjVz3oZxf7QiF5gxQTyaoYTPF9sfPTEGvq7Xp66y4MUw3beWnsnppLV8oVdGQbx A1rN6QINc9qkdjg+pOu4tw3q5068h94bsfOeD5I= Received: (qmail 67006 invoked by alias); 20 May 2015 23:54:50 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 66993 invoked by uid 89); 20 May 2015 23:54:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f179.google.com Received: from mail-pd0-f179.google.com (HELO mail-pd0-f179.google.com) (209.85.192.179) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 20 May 2015 23:54:48 +0000 Received: by pdea3 with SMTP id a3so86670835pde.2 for ; Wed, 20 May 2015 16:54:46 -0700 (PDT) X-Received: by 10.68.68.230 with SMTP id z6mr42584445pbt.102.1432166086739; Wed, 20 May 2015 16:54:46 -0700 (PDT) Received: from bubble.grove.modra.org ([58.160.155.134]) by mx.google.com with ESMTPSA id c13sm17297207pat.5.2015.05.20.16.54.45 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 May 2015 16:54:45 -0700 (PDT) Received: by bubble.grove.modra.org (Postfix, from userid 1000) id 87239EA0074; Thu, 21 May 2015 09:24:40 +0930 (ACST) Date: Thu, 21 May 2015 09:24:40 +0930 From: Alan Modra To: gcc-patches@gcc.gnu.org, David Edelsohn Subject: Re: [PATCH 3/4] split-stack for powerpc64 Message-ID: <20150520235440.GI6140@bubble.grove.modra.org> Mail-Followup-To: gcc-patches@gcc.gnu.org, David Edelsohn References: <20150518025234.GT6140@bubble.grove.modra.org> <20150518025451.GW6140@bubble.grove.modra.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20150518025451.GW6140@bubble.grove.modra.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes Older assemblers don't understand .abiversion, so I'm committing the following as obvious to fix a problem Michael Meissner found when building gcc for powerpc64-linux. PR libgcc/66225 * config/rs6000/morestack.S: Remove ".abiversion 1". Index: libgcc/config/rs6000/morestack.S =================================================================== --- libgcc/config/rs6000/morestack.S (revision 223463) +++ libgcc/config/rs6000/morestack.S (working copy) @@ -28,7 +28,6 @@ .abiversion 2 #define PARAMS 32 #else - .abiversion 1 #define PARAMS 48 #endif #define MORESTACK_FRAMESIZE (PARAMS+96)