This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] h8300.md: Relax the condition for an insn pattern.


Hi,

Attached is a patch to relax the condition for an insn pattern.

There is no problem even if operands[0] and operands[2] refer to the
same register, so the patch removes the condition.

Tested on h8300 port.  Committed.

Kazu Hirata

2002-11-25  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md (an anonymous pattern): Relax the
	condition for the pattern.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.108
diff -u -r1.108 h8300.md
--- h8300.md	20 Nov 2002 04:54:39 -0000	1.108
+++ h8300.md	25 Nov 2002 20:30:18 -0000
@@ -2234,10 +2234,7 @@
 	(ior:SI (zero_extend:SI (match_operand:HI 1 "register_operand" "0"))
 		(ashift:SI (match_operand:SI 2 "register_operand" "r")
 			   (const_int 16))))]
-  "(TARGET_H8300H || TARGET_H8300S)
-   && REG_P (operands[0])
-   && REG_P (operands[2])
-   && (REGNO (operands[0]) != REGNO (operands[2]))"
+  "TARGET_H8300H || TARGET_H8300S"
   "mov.w\\t%f2,%e0"
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]