From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 106297 invoked by alias); 27 Jun 2017 13:53:25 -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 106278 invoked by uid 89); 27 Jun 2017 13:53:25 -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,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*c:HpplH, H*c:HHHH, H*c:HHHHHHHH, H*c:MHil X-HELO: smtp.eu.adacore.com Received: from mel.act-europe.fr (HELO smtp.eu.adacore.com) (194.98.77.210) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 27 Jun 2017 13:53:23 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 117178134B; Tue, 27 Jun 2017 15:53:22 +0200 (CEST) Received: from smtp.eu.adacore.com ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ccZsrhmSfqmN; Tue, 27 Jun 2017 15:53:21 +0200 (CEST) Received: from idefix.act-europe.fr (idefix.act-europe.fr [10.10.1.101]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.eu.adacore.com (Postfix) with ESMTPSA id ED2EF8133D; Tue, 27 Jun 2017 15:53:21 +0200 (CEST) From: Olivier Hainque Content-Type: multipart/mixed; boundary="Apple-Mail=_32029D05-961F-4D63-B867-B1E5724C50D9" Subject: minor cleanups in x86*-vxworks support file Date: Tue, 27 Jun 2017 13:53:00 -0000 Message-Id: <7112494E-643C-4CE9-935B-7125A9E4BF0F@adacore.com> Cc: Olivier Hainque , Douglas B Rupp , Jerome Lambourg , Nathan Sidwell To: GCC Patches Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) X-SW-Source: 2017-06/txt/msg02030.txt.bz2 --Apple-Mail=_32029D05-961F-4D63-B867-B1E5724C50D9 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Content-length: 375 Hello, Minor cleanups, tested together with the previous patches introducing the vx7 support. Committing to mainline. With Kind Regards, Olivier 2017-06-27 Jerome Lambourg * config/i386/vxworks.h (ASM_SPEC): Remove definition. No target specific need, just fallback on defaults. (ASM_OUTPUT_ALIGNED_BSS): Add #undef before #define. --Apple-Mail=_32029D05-961F-4D63-B867-B1E5724C50D9 Content-Disposition: attachment; filename=0008-minor-cleanups-in-config-i386-vxworks.h.patch Content-Type: application/octet-stream; name="0008-minor-cleanups-in-config-i386-vxworks.h.patch" Content-Transfer-Encoding: 7bit Content-length: 450 --- a/gcc/config/i386/vxworks.h +++ b/gcc/config/i386/vxworks.h @@ -18,9 +18,7 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ -#undef ASM_SPEC -#define ASM_SPEC "" - +#undef ASM_OUTPUT_ALIGNED_BSS #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \ asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN) -- 1.7.10.4 --Apple-Mail=_32029D05-961F-4D63-B867-B1E5724C50D9--