* config/h8300/h8300.md: Remove constraints from expanders.
authorKazu Hirata <kazu@hxi.com>
Thu, 10 Jan 2002 17:24:05 +0000 (17:24 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Thu, 10 Jan 2002 17:24:05 +0000 (17:24 +0000)
From-SVN: r48736

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

index 23609c6141983ee8c2944c5cd29e99f4f564bb9e..2926a783c43c49281ce906361abb8120e4059fb8 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-10  Kazu Hirata  <kazu@hxi.com>
+
+       * config/h8300/h8300.md: Remove constraints from expanders.
+
 2002-01-10  Kazu Hirata  <kazu@hxi.com>
 
        * varasm.c: Fix formatting.
index 56986c7da0ed86da197a2da75bba0d7366070f59..8bb8a91065d6ae32d6103921de5a3f7482608a2e 100644 (file)
@@ -1,6 +1,6 @@
 ;; GCC machine description for Hitachi H8/300
 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-;; 2001 Free Software Foundation, Inc.
+;; 2001, 2002 Free Software Foundation, Inc.
 
 ;;   Contributed by Steve Chamberlain (sac@cygnus.com),
 ;;   Jim Wilson (wilson@cygnus.com), and Doug Evans (dje@cygnus.com).
    (set_attr "cc" "clobber")])
 
 (define_expand "pushqi1"
-  [(use (match_operand:QI 0 "register_operand" "r"))]
+  [(use (match_operand:QI 0 "register_operand" ""))]
   ""
   "
 {
 
 (define_expand "pushhi1_h8300"
   [(set (mem:QI (pre_dec:HI (reg:HI 7)))
-        (match_operand:QI 0 "register_operand" "r"))]
+        (match_operand:QI 0 "register_operand" ""))]
   "TARGET_H8300"
   "")
 
    (set_attr "cc" "clobber")])
 
 (define_expand "pushhi1"
-  [(use (match_operand:QI 0 "register_operand" "r"))]
+  [(use (match_operand:QI 0 "register_operand" ""))]
   ""
   "
 {
    (set_attr "cc" "set_zn")])
 
 (define_expand "neghi2"
-  [(set (match_operand:HI 0 "register_operand" "=r")
-       (neg:HI (match_operand:HI 1 "general_operand" "0")))]
+  [(set (match_operand:HI 0 "register_operand" "")
+       (neg:HI (match_operand:HI 1 "general_operand" "")))]
   ""
   "
 {
 
 (define_expand "neghi2_h8300"
   [(set (match_dup 2)
-       (not:HI (match_operand:HI 1 "register_operand" "r")))
+       (not:HI (match_operand:HI 1 "register_operand" "")))
    (set (match_dup 2) (plus:HI (match_dup 2) (const_int 1)))
-   (set (match_operand:HI 0 "register_operand" "=r")
+   (set (match_operand:HI 0 "register_operand" "")
        (match_dup 2))]
   ""
   "{ operands[2] = gen_reg_rtx (HImode); }")
    (set_attr "cc" "set_zn")])
 
 (define_expand "negsi2"
-  [(set (match_operand:SI 0 "register_operand" "=r")
-       (neg:SI (match_operand:SI 1 "general_operand" "0")))]
+  [(set (match_operand:SI 0 "register_operand" "")
+       (neg:SI (match_operand:SI 1 "general_operand" "")))]
   ""
   "
 {
 
 (define_expand "negsi2_h8300"
   [(set (match_dup 2)
-       (not:SI (match_operand:SI 1 "register_operand" "r")))
+       (not:SI (match_operand:SI 1 "register_operand" "")))
    (set (match_dup 2) (plus:SI (match_dup 2) (const_int 1)))
-   (set (match_operand:SI 0 "register_operand" "=r")
+   (set (match_operand:SI 0 "register_operand" "")
        (match_dup 2))]
   ""
   "{ operands[2] = gen_reg_rtx(SImode); }")
 ;; This is a define expand, because pointers may be either 16 or 32 bits.
 
 (define_expand "tablejump"
-  [(parallel [(set (pc) (match_operand 0 "register_operand" "r"))
+  [(parallel [(set (pc) (match_operand 0 "register_operand" ""))
              (use (label_ref (match_operand 1 "" "")))])]
   ""
   "")