diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-13 13:47:12 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-13 13:47:12 +0000 |
| commit | 6afb3643b11d8acf88d901208b58ae045c4f0684 (patch) | |
| tree | d252aec5b1e2117876a446c5c41307edfa6668c3 | |
| parent | 587f6a06e2b582d0f0fc0667a511ab9061f8de8a (diff) | |
| download | ppe42-gcc-6afb3643b11d8acf88d901208b58ae045c4f0684.tar.gz ppe42-gcc-6afb3643b11d8acf88d901208b58ae045c4f0684.zip | |
* config/h8300/h8300.md (addhi3_h8300): Remove the last
alternative.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60098 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/h8300/h8300.md | 13 |
2 files changed, 12 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f8bdf77260a..3ac0ccec42d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,10 @@ +2002-12-13 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/h8300.md (addhi3_h8300): Remove the last + alternative. + 2002-12-12 Devang Patel <dpatel@apple.com> + * doc/invoke.texi: Document Darwin linker options, -bundle -bind_at_load, -all_load and -arch_errors_fatal diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 8bc69aa85f6..de6edc9b4d2 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -763,19 +763,18 @@ "") (define_insn "*addhi3_h8300" - [(set (match_operand:HI 0 "register_operand" "=r,r,r,r,r,&r") - (plus:HI (match_operand:HI 1 "register_operand" "%0,0,0,0,0,g") - (match_operand:HI 2 "nonmemory_operand" "L,N,J,n,r,r")))] + [(set (match_operand:HI 0 "register_operand" "=r,r,r,r,r") + (plus:HI (match_operand:HI 1 "register_operand" "%0,0,0,0,0") + (match_operand:HI 2 "nonmemory_operand" "L,N,J,n,r")))] "TARGET_H8300" "@ adds %2,%T0 subs %G2,%T0 add.b %t2,%t0 add.b %s2,%s0\;addx %t2,%t0 - add.w %T2,%T0 - mov.w %T1,%T0\;add.w %T2,%T0" - [(set_attr "length" "2,2,2,4,2,6") - (set_attr "cc" "none_0hit,none_0hit,clobber,clobber,set_zn,set_zn")]) + add.w %T2,%T0" + [(set_attr "length" "2,2,2,4,2") + (set_attr "cc" "none_0hit,none_0hit,clobber,clobber,set_zn")]) (define_insn "*addhi3_h8300hs" [(set (match_operand:HI 0 "register_operand" "=r,r,r,r,r") |

