[patch] h8300.md: Give names to anonymous insns.

Kazu Hirata kazu@cs.umass.edu
Sun Dec 29 14:26:00 GMT 2002


Hi,

Attached is a patch to give names to anonymous insns.  Committed as
obvious.

Kazu Hirata

2002-12-29  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md: Give internal names to anonymous
	insns.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.136
diff -u -r1.136 h8300.md
--- h8300.md	29 Dec 2002 21:33:18 -0000	1.136
+++ h8300.md	29 Dec 2002 22:20:49 -0000
@@ -2376,7 +2376,7 @@
 
 ;; ior:SI
 
-(define_insn ""
+(define_insn "*iorsi3_zexthi"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(ior:SI (zero_extend:SI (match_operand:HI 1 "register_operand" "r"))
 		(match_operand:SI 2 "register_operand" "0")))]
@@ -2388,7 +2388,7 @@
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 
-(define_insn ""
+(define_insn "*iorsi3_zextqi"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(ior:SI (zero_extend:SI (match_operand:QI 1 "register_operand" "r"))
 		(match_operand:SI 2 "register_operand" "0")))]
@@ -2397,7 +2397,9 @@
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 
-(define_insn ""
+;; xor:HI
+
+(define_insn "*xorhi3_zextqi"
   [(set (match_operand:HI 0 "register_operand" "=r")
 	(xor:HI (zero_extend:HI (match_operand:QI 1 "register_operand" "r"))
 		(match_operand:HI 2 "register_operand" "0")))]
@@ -2408,7 +2410,9 @@
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 
-(define_insn ""
+;; xor:SI
+
+(define_insn "*xorsi3_zexthi"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(xor:SI (zero_extend:SI (match_operand:HI 1 "register_operand" "r"))
 		(match_operand:SI 2 "register_operand" "0")))]
@@ -2420,7 +2424,7 @@
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 
-(define_insn ""
+(define_insn "*xorsi3_zextqi"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(xor:SI (zero_extend:SI (match_operand:QI 1 "register_operand" "r"))
 		(match_operand:SI 2 "register_operand" "0")))]
@@ -2431,7 +2435,7 @@
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 
-(define_insn ""
+(define_insn "*iorsi3_two_hi"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(ior:SI (zero_extend:SI (match_operand:HI 1 "register_operand" "0"))
 		(ashift:SI (match_operand:SI 2 "register_operand" "r")
@@ -2441,7 +2445,7 @@
   [(set_attr "cc" "clobber")
    (set_attr "length" "2")])
 
-(define_insn ""
+(define_insn "*iorsi3_ashift_16"
   [(set (match_operand:SI 0 "register_operand" "=r")
 	(ior:SI (ashift:SI (match_operand:SI 1 "register_operand" "r")
 			   (const_int 16))



More information about the Gcc-patches mailing list