From: Kazu Hirata Date: Mon, 3 Mar 2003 12:49:38 +0000 (+0000) Subject: h8300.md (*extzv_8_8): Use shorter code when operands[0] and operands[1] are different. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1f7e87909e7d00c3ef6270c2783d765e164e317f;p=gcc.git h8300.md (*extzv_8_8): Use shorter code when operands[0] and operands[1] are different. * config/h8300/h8300.md (*extzv_8_8): Use shorter code when operands[0] and operands[1] are different. From-SVN: r63718 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 79429c28730..8b81f7e31eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,9 @@ -2003-03-02 Kazu Hirata +2003-03-03 Kazu Hirata + + * config/h8300/h8300.md (*extzv_8_8): Use shorter code when + operands[0] and operands[1] are different. + +2003-03-03 Kazu Hirata * reload1.c (reload_cse_move2add): Remove variable success. diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 61ae4b65532..28cb87ec7ff 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -2630,7 +2630,14 @@ (const_int 8) (const_int 8)))] "TARGET_H8300H || TARGET_H8300S" - "mov.b\\t%x1,%w0\;extu.w\\t%f0\;extu.l\\t%S0" + "* +{ + if (REG_P (operands[0]) && REG_P (operands[1]) + && REGNO (operands[0]) != REGNO (operands[1])) + return \"sub.l\\t%S0,%S0\;mov.b\\t%x1,%w0\"; + else + return \"mov.b\\t%x1,%w0\;extu.w\\t%f0\;extu.l\\t%S0\"; +}" [(set_attr "cc" "set_znv") (set_attr "length" "6")])