From patchwork Sun Jul 15 00:10:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sandra Loosemore X-Patchwork-Id: 171041 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]) by ozlabs.org (Postfix) with SMTP id 6AC432C00C0 for ; Sun, 15 Jul 2012 10:10:54 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1342915855; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC: Subject:Content-Type:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=k4Ugm7lApzD9/fvE1Qwg7OJHOTw=; b=DPophF5LBJ34qy2 eVIAUVaC/u/ZmyB49v7dt26Eb7GURwKNRCuSq8hj3SSTWRgtT+qIaT9tHzLfezEz XlOR7hQibABHMIs2G6clzqB7ZeCdWfmAwv0/VgUDxaVhEomQrmhRTqkz9TyseQ6g +jABvHHWGMGnx/ILwRBo+i9u3ESM= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=nY2uMaBM+TmiSHSjlV03tAAMjTQ7EvY/JuZ1CZF6+/tv29loE0UIJIAxDtK4X9 8ilREQB4MRkNPiHn/l6vQJjOJi1b0Di5969kxw5ZQiCzeZIICl2SuxV141++lp1X pVpXggbHT1npdNY+FGY21CO+Zc2ihzvRSQtjY3MoisGL4=; Received: (qmail 14414 invoked by alias); 15 Jul 2012 00:10:48 -0000 Received: (qmail 14397 invoked by uid 22791); 15 Jul 2012 00:10:45 -0000 X-SWARE-Spam-Status: No, hits=-3.0 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 15 Jul 2012 00:10:33 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1SqCPw-0003Kk-DQ from Sandra_Loosemore@mentor.com for gcc-patches@gcc.gnu.org; Sat, 14 Jul 2012 17:10:32 -0700 Received: from SVR-ORW-FEM-03.mgc.mentorg.com ([147.34.97.39]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sat, 14 Jul 2012 17:10:32 -0700 Received: from [IPv6:::1] (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.1.289.1; Sat, 14 Jul 2012 17:10:31 -0700 Message-ID: <50020A87.3050802@codesourcery.com> Date: Sat, 14 Jul 2012 18:10:47 -0600 From: Sandra Loosemore User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101208 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: CC: Andrew Stubbs Subject: PATCH: fix typos in SH_ASM_SPEC 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 We've had this patch to add missing whitespace to the assembler spec string in the SH back end in our local tree for a couple of years. I think it's obvious enough that I've gone ahead and checked it in on mainline too. -Sandra 2012-07-14 Andrew Stubbs Sandra Loosemore gcc/ * config/sh/sh.h (SH_ASM_SPEC): Add spaces between options. Index: gcc/config/sh/sh.h =================================================================== --- gcc/config/sh/sh.h (revision 189485) +++ gcc/config/sh/sh.h (working copy) @@ -338,8 +338,8 @@ do { \ #endif #define SH_ASM_SPEC \ - "%(subtarget_asm_endian_spec) %{mrelax:-relax %(subtarget_asm_relax_spec)}\ -%(subtarget_asm_isa_spec) %(subtarget_asm_spec)\ + "%(subtarget_asm_endian_spec) %{mrelax:-relax %(subtarget_asm_relax_spec)} \ +%(subtarget_asm_isa_spec) %(subtarget_asm_spec) \ %{m2a:--isa=sh2a} \ %{m2a-single:--isa=sh2a} \ %{m2a-single-only:--isa=sh2a} \