h8300-protos.h: Replace do_movsi with h8300_expand_movsi.
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 14 Jan 2004 02:01:05 +0000 (02:01 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 14 Jan 2004 02:01:05 +0000 (02:01 +0000)
* config/h8300/h8300-protos.h: Replace do_movsi with
h8300_expand_movsi.
* config/h8300/h8300.c (do_movsi): Change to
h8300_expand_movsi.
* config/h8300/h8300.md (movsi): Replace do_movsi with
h8300_expand_movsi.
(movsf): Likewise.

From-SVN: r75836

gcc/ChangeLog
gcc/config/h8300/h8300-protos.h
gcc/config/h8300/h8300.c
gcc/config/h8300/h8300.md

index 79c8f222b78269f2e86c239802b48defc255a14a..c76440243fff4540cfd289a8b133379f3c447d95 100644 (file)
@@ -1,3 +1,13 @@
+2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/h8300/h8300-protos.h: Replace do_movsi with
+       h8300_expand_movsi.
+       * config/h8300/h8300.c (do_movsi): Change to
+       h8300_expand_movsi.
+       * config/h8300/h8300.md (movsi): Replace do_movsi with
+       h8300_expand_movsi.
+       (movsf): Likewise.
+
 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/h8300/h8300.c (dosize): Change to
index a7987d06a83febaf1b8fcbaa27e657a0d0f5a789..01cbe0410918f4ca579dae82d2d68e0c576adc91 100644 (file)
@@ -39,7 +39,7 @@ extern const char *output_simode_bld (int, rtx[]);
 extern void print_operand_address (FILE *, rtx);
 extern void print_operand (FILE *, rtx, int);
 extern void final_prescan_insn (rtx, rtx *, int);
-extern int do_movsi (rtx[]);
+extern int h8300_expand_movsi (rtx[]);
 extern void notice_update_cc (rtx, rtx);
 extern const char *output_logical_op (enum machine_mode, rtx *);
 extern unsigned int compute_logical_op_length (enum machine_mode,
index 020738dc5eee8ade53599c21e083364eb7321a2b..d4e315ba7ffeea371e835f6b2603b0b9e5a2bf4f 100644 (file)
@@ -1556,7 +1556,7 @@ final_prescan_insn (rtx insn, rtx *operand ATTRIBUTE_UNUSED,
 /* Prepare for an SI sized move.  */
 
 int
-do_movsi (rtx operands[])
+h8300_expand_movsi (rtx operands[])
 {
   rtx src = operands[1];
   rtx dst = operands[0];
index 475f0e74b376f9dc26e5c85c5d90305683fcaf2e..7da30377f40a8e172cbc45f5dd59122ebc962908 100644 (file)
 {
   if (TARGET_H8300)
     {
-      if (do_movsi (operands))
+      if (h8300_expand_movsi (operands))
        DONE;
     }
   else
 {
   if (TARGET_H8300)
     {
-      if (do_movsi (operands))
+      if (h8300_expand_movsi (operands))
        DONE;
     }
   else