From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 124958 invoked by alias); 29 Sep 2015 13:44:04 -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 124945 invoked by uid 89); 29 Sep 2015 13:44:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=AWL,BAYES_40,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: mx07-00178001.pphosted.com Received: from mx08-00178001.pphosted.com (HELO mx07-00178001.pphosted.com) (91.207.212.93) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 29 Sep 2015 13:44:02 +0000 Received: from pps.filterd (m0046660.ppops.net [127.0.0.1]) by mx08-00178001.pphosted.com (8.14.5/8.14.5) with SMTP id t8TDh5vX003977 for ; Tue, 29 Sep 2015 15:43:59 +0200 Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx08-00178001.pphosted.com with ESMTP id 1x7tr3gaqy-1 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Tue, 29 Sep 2015 15:43:59 +0200 Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 1973938 for ; Tue, 29 Sep 2015 13:43:41 +0000 (GMT) Received: from Webmail-eu.st.com (safex1hubcas4.st.com [10.75.90.69]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 78A19284C for ; Tue, 29 Sep 2015 13:43:57 +0000 (GMT) Received: from [164.129.122.197] (164.129.122.197) by webmail-eu.st.com (10.75.90.13) with Microsoft SMTP Server (TLS) id 8.3.342.0; Tue, 29 Sep 2015 15:43:56 +0200 Subject: Re: [PATCH ARM]: PR67745: Fix function alignment after __attribute__ 2/2 To: References: <560A90F2.5010708@st.com> From: Christian Bruel X-No-Archive: yes Message-ID: <560A959C.2090800@st.com> Date: Tue, 29 Sep 2015 13:59:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <560A90F2.5010708@st.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.14.151,1.0.33,0.0.0000 definitions=2015-09-29_09:2015-09-29,2015-09-29,1970-01-01 signatures=0 X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg02208.txt.bz2 On 09/29/2015 03:24 PM, Christian Bruel wrote: > This patch uses FUNCTION_BOUNDARY instead of DECL_ALIGN to check the max > align when optimizing for size in assemble_start_function. > This is necessary for ARM that can switch the max code alignment > directives between modes. > s/max/min