From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2895 invoked by alias); 21 May 2015 12:31:24 -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 2783 invoked by uid 89); 21 May 2015 12:31:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.1 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 21 May 2015 12:31:18 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t4LCVGNY023939 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 21 May 2015 08:31:17 -0400 Received: from localhost.localdomain ([10.3.113.14]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t4LCVGCO023052; Thu, 21 May 2015 08:31:16 -0400 Message-ID: <555DD014.70303@redhat.com> Date: Thu, 21 May 2015 12:33:00 -0000 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: tbsaunde+gcc@tbsaunde.org, gcc-patches@gcc.gnu.org Subject: Re: [PATCH 2/7] remove most ifdef STACK_GROWS_DOWNWARD References: <1432174178-29086-1-git-send-email-tbsaunde+gcc@tbsaunde.org> <1432174178-29086-3-git-send-email-tbsaunde+gcc@tbsaunde.org> In-Reply-To: <1432174178-29086-3-git-send-email-tbsaunde+gcc@tbsaunde.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-05/txt/msg01950.txt.bz2 On 05/20/2015 08:09 PM, tbsaunde+gcc@tbsaunde.org wrote: > From: Trevor Saunders > > gcc/c-family/ChangeLog: > > 2015-05-20 Trevor Saunders > > * c-cppbuiltin.c (c_cpp_builtins): Use if instead of #if with > STACK_GROWS_DOWNWARD. > > gcc/ChangeLog: > > 2015-05-20 Trevor Saunders > > * *.c: Use if instead of preprocessor checks with > STACK_GROWS_DOWNWARD. > --- > gcc/ChangeLog | 5 ++++ > gcc/builtins.c | 30 +++++++++++------------ > gcc/c-family/ChangeLog | 5 ++++ > gcc/c-family/c-cppbuiltin.c | 5 ++-- > gcc/dwarf2cfi.c | 12 +++++----- > gcc/explow.c | 33 ++++++++++++-------------- > gcc/expr.c | 58 +++++++++++++++++++-------------------------- > gcc/recog.c | 8 ++----- > gcc/sched-deps.c | 9 ++++--- > 9 files changed, 78 insertions(+), 87 deletions(-) OK with the usual request to list filenames in the ChangeLogs. jeff