From: Oleg Endo Date: Wed, 19 Sep 2012 17:42:28 +0000 (+0000) Subject: sh.md (prologue, epilogue): Use braced strings. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=689653125b420b235d91596a9055aae46ec69a58;p=gcc.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 48884d8ed62..d7918617722 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 c510629c553..3497ce80c9a 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" ""))]