* config/h8300/h8300.md: Remove constraints from expanders.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 24 Nov 2003 17:11:44 +0000 (17:11 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 24 Nov 2003 17:11:44 +0000 (17:11 +0000)
From-SVN: r73880

gcc/ChangeLog
gcc/config/h8300/h8300.md

index 61f21cfb85462ed28e014737f6a4ca4585735632..a24e6fb919e540a22a5f1a274165982ed1e89314 100644 (file)
@@ -1,3 +1,7 @@
+2003-11-24  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/h8300/h8300.md: Remove constraints from expanders.
+
 2003-11-24  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/h8300/h8300.md: (stm_h8300s_2): Change the name to
index 5ee68cfb672206bdaf072573237eb061623b908c..069573caab61e779fdd5b73ac13a57a335a17c11 100644 (file)
 
 (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"
   "")