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 extraneous USE in expanders.


Hi,

Built h8300-hms.  Committed.

Kazu Hirata

2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md: Remove extraneous USE in expanders.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.258
diff -u -r1.258 h8300.md
--- h8300.md	21 Jan 2004 20:19:23 -0000	1.258
+++ h8300.md	24 Jan 2004 08:54:29 -0000
@@ -153,7 +153,7 @@
    (set_attr "cc" "clobber")])
 
 (define_expand "pushqi1"
-  [(use (match_operand:QI 0 "register_operand" ""))]
+  [(match_operand:QI 0 "register_operand" "")]
   ""
   "
 {
@@ -260,7 +260,7 @@
    (set_attr "cc" "clobber")])
 
 (define_expand "pushhi1"
-  [(use (match_operand:HI 0 "register_operand" ""))]
+  [(match_operand:HI 0 "register_operand" "")]
   ""
   "
 {
@@ -1934,8 +1934,8 @@
    (set_attr "length" "4")])
 
 (define_expand "stm_h8300s_2"
-  [(use (match_operand:SI 0 "register_operand" ""))
-   (use (match_operand:SI 1 "register_operand" ""))]
+  [(match_operand:SI 0 "register_operand" "")
+   (match_operand:SI 1 "register_operand" "")]
   "TARGET_H8300S
    && ((REGNO (operands[0]) == 0 && REGNO (operands[1]) == 1)
        || (REGNO (operands[0]) == 2 && REGNO (operands[1]) == 3)
@@ -1992,9 +1992,9 @@
    (set_attr "length" "4")])
 
 (define_expand "stm_h8300s_3"
-  [(use (match_operand:SI 0 "register_operand" ""))
-   (use (match_operand:SI 1 "register_operand" ""))
-   (use (match_operand:SI 2 "register_operand" ""))]
+  [(match_operand:SI 0 "register_operand" "")
+   (match_operand:SI 1 "register_operand" "")
+   (match_operand:SI 2 "register_operand" "")]
   "TARGET_H8300S
    && ((REGNO (operands[0]) == 0
 	&& REGNO (operands[1]) == 1
@@ -2056,10 +2056,10 @@
    (set_attr "length" "4")])
 
 (define_expand "stm_h8300s_4"
-  [(use (match_operand:SI 0 "register_operand" ""))
-   (use (match_operand:SI 1 "register_operand" ""))
-   (use (match_operand:SI 2 "register_operand" ""))
-   (use (match_operand:SI 3 "register_operand" ""))]
+  [(match_operand:SI 0 "register_operand" "")
+   (match_operand:SI 1 "register_operand" "")
+   (match_operand:SI 2 "register_operand" "")
+   (match_operand:SI 3 "register_operand" "")]
   "TARGET_H8300S
    && REGNO (operands[0]) == 0
    && REGNO (operands[1]) == 1
@@ -2109,8 +2109,8 @@
    (set_attr "length" "4")])
 
 (define_expand "ldm_h8300s_2"
-  [(use (match_operand:SI 0 "register_operand" ""))
-   (use (match_operand:SI 1 "register_operand" ""))]
+  [(match_operand:SI 0 "register_operand" "")
+   (match_operand:SI 1 "register_operand" "")]
   "TARGET_H8300S
    && ((REGNO (operands[0]) == 0 && REGNO (operands[1]) == 1)
        || (REGNO (operands[0]) == 2 && REGNO (operands[1]) == 3)
@@ -2167,9 +2167,9 @@
    (set_attr "length" "4")])
 
 (define_expand "ldm_h8300s_3"
-  [(use (match_operand:SI 0 "register_operand" ""))
-   (use (match_operand:SI 1 "register_operand" ""))
-   (use (match_operand:SI 2 "register_operand" ""))]
+  [(match_operand:SI 0 "register_operand" "")
+   (match_operand:SI 1 "register_operand" "")
+   (match_operand:SI 2 "register_operand" "")]
   "TARGET_H8300S
    && ((REGNO (operands[0]) == 0
 	&& REGNO (operands[1]) == 1
@@ -2231,10 +2231,10 @@
    (set_attr "length" "4")])
 
 (define_expand "ldm_h8300s_4"
-  [(use (match_operand:SI 0 "register_operand" ""))
-   (use (match_operand:SI 1 "register_operand" ""))
-   (use (match_operand:SI 2 "register_operand" ""))
-   (use (match_operand:SI 3 "register_operand" ""))]
+  [(match_operand:SI 0 "register_operand" "")
+   (match_operand:SI 1 "register_operand" "")
+   (match_operand:SI 2 "register_operand" "")
+   (match_operand:SI 3 "register_operand" "")]
   "TARGET_H8300S && !TARGET_NORMAL_MODE
    && REGNO (operands[0]) == 0
    && REGNO (operands[1]) == 1


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