diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-11-28 05:16:52 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-11-28 05:16:52 +0000 |
commit | be52ec1df2738a409a384f1b87f0dca8c74ffc69 (patch) | |
tree | 681db5a56a075b7c56967bca7f359e6025a6e0b5 | |
parent | ffa2298476ac8659ef25bc6a1a00fe463d5126e0 (diff) | |
download | gcc-be52ec1df2738a409a384f1b87f0dca8c74ffc69.zip gcc-be52ec1df2738a409a384f1b87f0dca8c74ffc69.tar.gz gcc-be52ec1df2738a409a384f1b87f0dca8c74ffc69.tar.bz2 |
h8300.md (*subhi3_h8300): Remove '&' from the constraint.
* config/h8300/h8300.md (*subhi3_h8300): Remove '&' from the
constraint.
(*subhi3_h8300hs): Likewise.
From-SVN: r74013
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.md | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3d65e50..8a61161 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-11-28 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.md (*subhi3_h8300): Remove '&' from the + constraint. + (*subhi3_h8300hs): Likewise. + 2003-11-28 David Edelsohn <edelsohn@gnu.org> * config/rs6000/rs6000.h (MASK_MFCRF): New. diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index e1be1e0..f93d7fc 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -972,7 +972,7 @@ "") (define_insn "*subhi3_h8300" - [(set (match_operand:HI 0 "register_operand" "=r,&r") + [(set (match_operand:HI 0 "register_operand" "=r,r") (minus:HI (match_operand:HI 1 "general_operand" "0,0") (match_operand:HI 2 "nonmemory_operand" "r,n")))] "TARGET_H8300" @@ -983,7 +983,7 @@ (set_attr "cc" "set_zn,clobber")]) (define_insn "*subhi3_h8300hs" - [(set (match_operand:HI 0 "register_operand" "=r,&r") + [(set (match_operand:HI 0 "register_operand" "=r,r") (minus:HI (match_operand:HI 1 "general_operand" "0,0") (match_operand:HI 2 "nonmemory_operand" "r,n")))] "TARGET_H8300H || TARGET_H8300S" |