]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
sh.md (prologue, epilogue): Use braced strings.
authorOleg Endo <olegendo@gcc.gnu.org>
Wed, 19 Sep 2012 17:42:28 +0000 (17:42 +0000)
committerOleg Endo <olegendo@gcc.gnu.org>
Wed, 19 Sep 2012 17:42:28 +0000 (17:42 +0000)
* config/sh/sh.md (prologue, epilogue): Use braced strings.

From-SVN: r191488

gcc/ChangeLog
gcc/config/sh/sh.md

index 48884d8ed62339361e9181dc35ce5b88d8029467..d7918617722d1cdc0c21ba70876de3d11146feed 100644 (file)
@@ -1,3 +1,7 @@
+2012-09-19  Oleg Endo  <olegendo@gcc.gnu.org>
+
+       * config/sh/sh.md (prologue, epilogue): Use braced strings.
+
 2012-09-19  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR rtl-optimization/54290
index c510629c553a7929b6e3b1917059865e670da61d..3497ce80c9a20d3d7b39de963fce7bf41983b6ce 100644 (file)
@@ -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" ""))]