diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-14 19:37:16 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-01-14 19:37:16 +0000 |
commit | 102f9f10293c2b61ca4fd4c6225425730bdd9f8c (patch) | |
tree | a222fb6ddff04eb30c76246f8073c1279c62f133 /gcc/config/moxie | |
parent | 554126c9d99ed74db00501555b33513f54c66c39 (diff) | |
download | gcc-102f9f10293c2b61ca4fd4c6225425730bdd9f8c.tar.gz |
* config/alpha/alpha.md (umk_mismatch_args): Don't put a mode on set.
* config/fr30/fr30.md: Likweise
(movsi_push): Likewise.
(movsi_pop): Likewise.
(enter_func): Likewise.
* config/moxie/moxie.md (movsi_push): Likewise.
(movsi_pop): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168817 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/moxie')
-rw-r--r-- | gcc/config/moxie/moxie.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/moxie/moxie.md b/gcc/config/moxie/moxie.md index a8e68872e3f..64f8395cb7b 100644 --- a/gcc/config/moxie/moxie.md +++ b/gcc/config/moxie/moxie.md @@ -188,15 +188,15 @@ ;; Push a register onto the stack (define_insn "movsi_push" - [(set:SI (mem:SI (pre_dec:SI (reg:SI 1))) - (match_operand:SI 0 "register_operand" "r"))] + [(set (mem:SI (pre_dec:SI (reg:SI 1))) + (match_operand:SI 0 "register_operand" "r"))] "" "push $sp, %0") ;; Pop a register from the stack (define_insn "movsi_pop" - [(set:SI (match_operand:SI 1 "register_operand" "=r") - (mem:SI (post_inc:SI (match_operand:SI 0 "register_operand" "r"))))] + [(set (match_operand:SI 1 "register_operand" "=r") + (mem:SI (post_inc:SI (match_operand:SI 0 "register_operand" "r"))))] "" "pop %0, %1") |