diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-11-24 17:11:44 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-11-24 17:11:44 +0000 |
commit | 7ed7f009d364980db0c765a88d2cd355accf2e57 (patch) | |
tree | 313a9226d84391dedb84b7a92b28416e2764c6db /gcc | |
parent | bc02597b70041f3f3d0d5cefbf387bebe41b5504 (diff) | |
download | gcc-7ed7f009d364980db0c765a88d2cd355accf2e57.zip gcc-7ed7f009d364980db0c765a88d2cd355accf2e57.tar.gz gcc-7ed7f009d364980db0c765a88d2cd355accf2e57.tar.bz2 |
* config/h8300/h8300.md: Remove constraints from expanders.
From-SVN: r73880
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.md | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 61f21cf..a24e6fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2003-11-24 Kazu Hirata <kazu@cs.umass.edu> + * config/h8300/h8300.md: Remove constraints from expanders. + +2003-11-24 Kazu Hirata <kazu@cs.umass.edu> + * config/h8300/h8300.md: (stm_h8300s_2): Change the name to stm_h8300s_2_advanced. (stm_h8300s_2_normal): New. diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 5ee68cf..069573c 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -1862,37 +1862,37 @@ (define_expand "push_h8300" [(set (mem:HI (pre_dec:HI (reg:HI SP_REG))) - (match_operand:HI 0 "register_operand" "=r"))] + (match_operand:HI 0 "register_operand" ""))] "TARGET_H8300" "") (define_expand "push_h8300hs" [(set (mem:SI (pre_dec:SI (reg:SI SP_REG))) - (match_operand:SI 0 "register_operand" "=r"))] + (match_operand:SI 0 "register_operand" ""))] "TARGET_H8300H && TARGET_H8300S" "") (define_expand "push_h8300hs_normal" [(set (mem:SI (pre_dec:HI (reg:HI SP_REG))) - (match_operand:SI 0 "register_operand" "=r"))] + (match_operand:SI 0 "register_operand" ""))] "TARGET_NORMAL_MODE" "") (define_expand "pop_h8300" - [(set (match_operand:HI 0 "register_operand" "=r") + [(set (match_operand:HI 0 "register_operand" "") (mem:HI (post_inc:HI (reg:HI SP_REG))))] "TARGET_H8300" "") (define_expand "pop_h8300hs" - [(set (match_operand:SI 0 "register_operand" "=r") + [(set (match_operand:SI 0 "register_operand" "") (mem:SI (post_inc:SI (reg:SI SP_REG))))] "TARGET_H8300H && TARGET_H8300S" "") (define_expand "pop_h8300hs_normal" - [(set (match_operand:SI 0 "register_operand" "=r") + [(set (match_operand:SI 0 "register_operand" "") (mem:SI (post_inc:HI (reg:HI SP_REG))))] "TARGET_NORMAL_MODE" "") |