diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5d6ece21cee..b051cb13578 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-03-03 Kazu Hirata + + * config/h8300/h8300.md (*ixorsi3_zext_hi): Restrict to + TARGET_H8300H and TARGET_H8300S. + 2003-03-03 Kazu Hirata * config/h8300/h8300.md (a peephole2): New. diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 1c031b90381..4da60c5e2fc 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -2801,7 +2801,7 @@ (match_operator:SI 1 "iorxor_operator" [(zero_extend:SI (match_operand:HI 2 "register_operand" "r")) (match_operand:SI 3 "register_operand" "0")]))] - "" + "TARGET_H8300H || TARGET_H8300S" "%c1.w\\t%T2,%f0" [(set_attr "cc" "clobber") (set_attr "length" "2")])