From patchwork Tue Sep 18 18:50:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Oleg Endo X-Patchwork-Id: 184797 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 6264A2C007E for ; Wed, 19 Sep 2012 04:51:26 +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=1348599088; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Message-ID:Subject:From:To:Date:Content-Type:Mime-Version: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=kSmyQPuVMJHMfKbtqOk2 976snLQ=; b=M30thfZ/coQIdenRVjhgmiS8PBEcyQNvV6OXtg6Skdaa75daOYQf /TL7X1vt55+if/XIjrt2n7gyOidYhWEIai/1PB0FNhLidtwXAtegEKHwZpaGep/K o+UAhy1cuui15QCxXCuBerIzkXYV/s5AEDcdo+1YN1w4pP5Fvau7BjE= 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:Message-ID:Subject:From:To:Date:Content-Type:Mime-Version:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=j6+8S3w8o+MBZOZlN7MD1QaYk9fqSYbzXYQOIs8yWxExuLMrPyYGKavmwzWlKv ckde86vfRCQXQh14Nn3maUa8UzNSYPqe4rLc+SPKKe8lyT8/rr32yYSYQIxGtLKp 6AoDKThxooYWBTum8SvCwLRRUPee/CMBNNsAPouK0WAvU=; Received: (qmail 18470 invoked by alias); 18 Sep 2012 18:51:22 -0000 Received: (qmail 18461 invoked by uid 22791); 18 Sep 2012 18:51:21 -0000 X-SWARE-Spam-Status: No, hits=-0.3 required=5.0 tests=AWL, BAYES_00, MEDICAL_SUBJECT, RCVD_IN_DNSWL_NONE, RCVD_IN_HOSTKARMA_NO, RP_MATCHES_RCVD, UNPARSEABLE_RELAY X-Spam-Check-By: sourceware.org Received: from mailout03.t-online.de (HELO mailout03.t-online.de) (194.25.134.81) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 18 Sep 2012 18:51:07 +0000 Received: from fwd51.aul.t-online.de (fwd51.aul.t-online.de ) by mailout03.t-online.de with smtp id 1TE2sz-00087o-TE; Tue, 18 Sep 2012 20:51:05 +0200 Received: from [192.168.0.100] (bNBQl+ZSZh-Ej1sRkhcHv8yd3WkJtO3SUecPz-gLRDmwM0Q1z7bT34gQd63yVLRgaU@[93.218.177.114]) by fwd51.t-online.de with esmtp id 1TE2sx-0wZ8oy0; Tue, 18 Sep 2012 20:51:03 +0200 Message-ID: <1347994258.2136.16.camel@yam-132-YW-E178-FTW> Subject: [SH] Use more braced strings in MD From: Oleg Endo To: gcc-patches Date: Tue, 18 Sep 2012 20:50:58 +0200 Mime-Version: 1.0 X-IsSubscribed: yes 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 Hello, Like the topic says. No functional change, just cosmetics. Tested on rev 191342 with make -k check RUNTESTFLAGS="--target_board=sh-sim \{-m2/-ml,-m2/-mb,-m2a/-mb,-m4/-ml,-m4/-mb,-m4a/-ml,-m4a/-mb}" and no new failures. OK to install? Cheers, Oleg ChangeLog: * config/sh/sh.md (prologue, epilogue): Use braced strings. Index: gcc/config/sh/sh.md =================================================================== --- gcc/config/sh/sh.md (revision 191342) +++ gcc/config/sh/sh.md (working copy) @@ -10303,12 +10303,17 @@ (define_expand "prologue" [(const_int 0)] "" - "sh_expand_prologue (); DONE;") +{ + sh_expand_prologue (); + DONE; +}) (define_expand "epilogue" [(return)] "" - "sh_expand_epilogue (false);") +{ + sh_expand_epilogue (false); +}) (define_expand "eh_return" [(use (match_operand 0 "register_operand" ""))]