diff options
author | Oleg Endo <olegendo@gcc.gnu.org> | 2012-09-19 17:42:28 +0000 |
---|---|---|
committer | Oleg Endo <olegendo@gcc.gnu.org> | 2012-09-19 17:42:28 +0000 |
commit | 689653125b420b235d91596a9055aae46ec69a58 (patch) | |
tree | 1d6560234db57eb8e418c61804d14665ca37088e | |
parent | 69d4d74dff077c4587c836052c931fc23a6a9679 (diff) | |
download | gcc-689653125b420b235d91596a9055aae46ec69a58.zip gcc-689653125b420b235d91596a9055aae46ec69a58.tar.gz gcc-689653125b420b235d91596a9055aae46ec69a58.tar.bz2 |
sh.md (prologue, epilogue): Use braced strings.
* config/sh/sh.md (prologue, epilogue): Use braced strings.
From-SVN: r191488
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/sh/sh.md | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 48884d8..d791861 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index c510629..3497ce8 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" ""))] |