Commit 02f20dc3 by Kaz Kojima

sh.c: Declare the prototype of sh_adjust_unroll_max only when...

	* config/sh/sh.c: Declare the prototype of sh_adjust_unroll_max
	only when TARGET_ADJUST_UNROLL_MAX is defined.
	(general_movsrc_operand): Use the C style comment.
	(ua_offset): Use prototype.

From-SVN: r99631
parent ed9c043b
2005-05-12 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh.c: Declare the prototype of sh_adjust_unroll_max
only when TARGET_ADJUST_UNROLL_MAX is defined.
(general_movsrc_operand): Use the C style comment.
(ua_offset): Use prototype.
2005-05-12 Zdenek Dvorak <dvorakz@suse.cz>
* tree-ssa-loop-im.c (struct mem_ref): Add field "next".
......
......@@ -266,7 +266,9 @@ static bool unspec_caller_rtx_p (rtx);
static bool sh_cannot_copy_insn_p (rtx);
static bool sh_rtx_costs (rtx, int, int, int *);
static int sh_address_cost (rtx);
#ifdef TARGET_ADJUST_UNROLL_MAX
static int sh_adjust_unroll_max (struct loop *, int, int, int, int);
#endif
static int shmedia_target_regs_stack_space (HARD_REG_SET *);
static int shmedia_reserve_space_for_target_registers_p (int, HARD_REG_SET *);
static int shmedia_target_regs_stack_adjust (HARD_REG_SET *);
......@@ -7554,7 +7556,7 @@ general_movsrc_operand (rtx op, enum machine_mode mode)
if (TARGET_SHMEDIA && 1
&& GET_CODE (op) == SUBREG && GET_MODE (op) == mode
&& SUBREG_REG (op) == const0_rtx && subreg_lowpart_p (op))
/* FIXME */ abort (); // return 1;
/* FIXME */ abort (); /* return 1; */
return general_operand (op, mode);
}
......@@ -8766,9 +8768,7 @@ mark_constant_pool_use (rtx x)
}
int
ua_offset (c, mode)
rtx c;
enum machine_mode mode ATTRIBUTE_UNUSED;
ua_offset (rtx c, enum machine_mode mode ATTRIBUTE_UNUSED)
{
return GET_CODE (c) == CONST_INT && CONST_OK_FOR_I06 (INTVAL (c));
}
......
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