From: Doug Evans Date: Mon, 22 May 1995 23:30:17 +0000 (+0000) Subject: (movsf_h8300h): Add missing post-inc case to constraints. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7488009618023f3288d83872df0e3ed2cf7b5dc0;p=gcc.git (movsf_h8300h): Add missing post-inc case to constraints. From-SVN: r9774 --- diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index c84d4345e14..d152a016575 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -382,8 +382,8 @@ (set_attr "cc" "set")]) (define_insn "movsf_h8300h" - [(set (match_operand:SF 0 "general_operand_dst" "=r,r,r,o,<") - (match_operand:SF 1 "general_operand_src" "I,r,ion,r,r"))] + [(set (match_operand:SF 0 "general_operand_dst" "=r,r,r,o,<,r") + (match_operand:SF 1 "general_operand_src" "I,r,ion,r,r,>"))] "TARGET_H8300H && (register_operand (operands[0], SFmode) || register_operand (operands[1], SFmode))" @@ -392,9 +392,10 @@ mov.l %S1,%S0 mov.l %S1,%S0 mov.l %S1,%S0 + mov.l %S1,%S0 mov.l %S1,%S0" [(set_attr "type" "move") - (set_attr "length" "2,2,8,8,4") + (set_attr "length" "2,2,8,8,4,4") (set_attr "cc" "set")]) ;; ----------------------------------------------------------------------