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: Remove constraints from expanders.


Hi,

Constraints in expanders are useless.  Committed as obvious.

Kazu Hirata

2003-11-24  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md: Remove constraints from expanders.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.243
diff -u -r1.243 h8300.md
--- h8300.md	24 Nov 2003 16:58:30 -0000	1.243
+++ h8300.md	24 Nov 2003 17:08:59 -0000
@@ -1862,37 +1862,37 @@
 
 (define_expand "push_h8300"
   [(set (mem:HI (pre_dec:HI (reg:HI SP_REG)))
-        (match_operand:HI 0 "register_operand" "=r"))]
+        (match_operand:HI 0 "register_operand" ""))]
 	
   "TARGET_H8300"
   "")
 
 (define_expand "push_h8300hs"
   [(set (mem:SI (pre_dec:SI (reg:SI SP_REG)))
-        (match_operand:SI 0 "register_operand" "=r"))]
+        (match_operand:SI 0 "register_operand" ""))]
   "TARGET_H8300H && TARGET_H8300S"
   "")
 
 (define_expand "push_h8300hs_normal"
   [(set (mem:SI (pre_dec:HI (reg:HI SP_REG)))
-        (match_operand:SI 0 "register_operand" "=r"))]
+        (match_operand:SI 0 "register_operand" ""))]
   "TARGET_NORMAL_MODE"
   "")
 
 (define_expand "pop_h8300"
-  [(set (match_operand:HI 0 "register_operand" "=r")
+  [(set (match_operand:HI 0 "register_operand" "")
 	(mem:HI (post_inc:HI (reg:HI SP_REG))))]
   "TARGET_H8300"
   "")
 
 (define_expand "pop_h8300hs"
-  [(set (match_operand:SI 0 "register_operand" "=r")
+  [(set (match_operand:SI 0 "register_operand" "")
 	(mem:SI (post_inc:SI (reg:SI SP_REG))))]
   "TARGET_H8300H && TARGET_H8300S"
   "")
 
 (define_expand "pop_h8300hs_normal"
-  [(set (match_operand:SI 0 "register_operand" "=r")
+  [(set (match_operand:SI 0 "register_operand" "")
 	(mem:SI (post_inc:HI (reg:HI SP_REG))))]
   "TARGET_NORMAL_MODE"
   "")


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