From 689653125b420b235d91596a9055aae46ec69a58 Mon Sep 17 00:00:00 2001 From: Oleg Endo Date: Wed, 19 Sep 2012 17:42:28 +0000 Subject: [PATCH] sh.md (prologue, epilogue): Use braced strings. * config/sh/sh.md (prologue, epilogue): Use braced strings. From-SVN: r191488 --- gcc/ChangeLog | 4 ++++ gcc/config/sh/sh.md | 9 +++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) 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" ""))] -- 2.30.2