From patchwork Tue Sep 18 18:50:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [SH] Use more braced strings in MD Date: Tue, 18 Sep 2012 08:50:58 -0000 From: Oleg Endo X-Patchwork-Id: 184797 Message-Id: <1347994258.2136.16.camel@yam-132-YW-E178-FTW> To: gcc-patches 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" ""))]