From: kkojima Date: Thu, 12 May 2005 21:45:05 +0000 (+0000) Subject: * config/sh/sh.c: Declare the prototype of sh_adjust_unroll_max X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=c5b4f25cc118eb6cc1674feff8a854d3a5a94bc8 * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99631 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a0bfe0db15..b5e5e6f6f8a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2005-05-12 Kaz Kojima + + * 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 * tree-ssa-loop-im.c (struct mem_ref): Add field "next". diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 18798d12f1e..d1fb0e298c0 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -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)); }