diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/h8300/h8300.md | 13 |
2 files changed, 11 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 86cc7f0..8800acb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2003-01-20 Kazu Hirata <kazu@cs.umass.edu> + * config/h8300/h8300.md (addsi_h8300): Remove the last + alternative. + +2003-01-20 Kazu Hirata <kazu@cs.umass.edu> + * config/h8300/h8300.c (get_shift_alg): Remove redundant code. 2003-01-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 0388ff2..7c1ab21 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -855,16 +855,15 @@ "") (define_insn "addsi_h8300" - [(set (match_operand:SI 0 "register_operand" "=r,r,&r") - (plus:SI (match_operand:SI 1 "register_operand" "%0,0,r") - (match_operand:SI 2 "nonmemory_operand" "n,r,r")))] + [(set (match_operand:SI 0 "register_operand" "=r,r") + (plus:SI (match_operand:SI 1 "register_operand" "%0,0") + (match_operand:SI 2 "nonmemory_operand" "n,r")))] "TARGET_H8300" "@ add %w2,%w0\;addx %x2,%x0\;addx %y2,%y0\;addx %z2,%z0 - add.w %f2,%f0\;addx %y2,%y0\;addx %z2,%z0 - mov.w %f1,%f0\;mov.w %e1,%e0\;add.w %f2,%f0\;addx %y2,%y0\;addx %z2,%z0" - [(set_attr "length" "8,6,10") - (set_attr "cc" "clobber")]) + add.w %f2,%f0\;addx %y2,%y0\;addx %z2,%z0" + [(set_attr "length" "8,6") + (set_attr "cc" "clobber,clobber")]) (define_insn "addsi_h8300h" [(set (match_operand:SI 0 "register_operand" "=r,r") |
