Commit 1a793acf by Kazu Hirata Committed by Kazu Hirata

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
parent 81ad9ded
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.
......
......@@ -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,
......
......@@ -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];
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment