aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-01-14 02:01:05 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-01-14 02:01:05 +0000
commit1a793acf78735bd089174860ee0cd86e8f3ea2c2 (patch)
treec2e029bfcb1bc20f32776d460aef1ddfe8294ab8 /gcc
parent81ad9dedffa81736fb0370607eb98f54b8d5ee90 (diff)
downloadgcc-1a793acf78735bd089174860ee0cd86e8f3ea2c2.zip
gcc-1a793acf78735bd089174860ee0cd86e8f3ea2c2.tar.gz
gcc-1a793acf78735bd089174860ee0cd86e8f3ea2c2.tar.bz2
h8300-protos.h: Replace do_movsi with h8300_expand_movsi.
* 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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog10
-rw-r--r--gcc/config/h8300/h8300-protos.h2
-rw-r--r--gcc/config/h8300/h8300.c2
-rw-r--r--gcc/config/h8300/h8300.md4
4 files changed, 14 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 79c8f22..c764402 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,15 @@
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
h8300_emit_stack_adjustment. Update callers.
diff --git a/gcc/config/h8300/h8300-protos.h b/gcc/config/h8300/h8300-protos.h
index a7987d0..01cbe04 100644
--- a/gcc/config/h8300/h8300-protos.h
+++ b/gcc/config/h8300/h8300-protos.h
@@ -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,
diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c
index 020738d..d4e315b 100644
--- a/gcc/config/h8300/h8300.c
+++ b/gcc/config/h8300/h8300.c
@@ -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];
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md
index 475f0e7..7da3037 100644
--- a/gcc/config/h8300/h8300.md
+++ b/gcc/config/h8300/h8300.md
@@ -351,7 +351,7 @@
{
if (TARGET_H8300)
{
- if (do_movsi (operands))
+ if (h8300_expand_movsi (operands))
DONE;
}
else
@@ -373,7 +373,7 @@
{
if (TARGET_H8300)
{
- if (do_movsi (operands))
+ if (h8300_expand_movsi (operands))
DONE;
}
else