From: Oleg Endo Date: Wed, 19 Sep 2012 17:42:28 +0000 (+0000) Subject: sh.md (prologue, epilogue): Use braced strings. X-Git-Tag: misc/gccgo-go1_1_2~750 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=689653125b420b235d91596a9055aae46ec69a58;p=thirdparty%2Fgcc.git sh.md (prologue, epilogue): Use braced strings. * config/sh/sh.md (prologue, epilogue): Use braced strings. From-SVN: r191488 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 48884d8ed623..d7918617722d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-09-19 Oleg Endo + + * config/sh/sh.md (prologue, epilogue): Use braced strings. + 2012-09-19 Eric Botcazou PR rtl-optimization/54290 diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index c510629c553a..3497ce80c9a2 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -10303,12 +10303,17 @@ label: (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" ""))]