sh.c: Declare the prototype of sh_adjust_unroll_max only when...
authorKaz Kojima <kkojima@gcc.gnu.org>
Thu, 12 May 2005 21:45:05 +0000 (21:45 +0000)
committerKaz Kojima <kkojima@gcc.gnu.org>
Thu, 12 May 2005 21:45:05 +0000 (21:45 +0000)
* 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

gcc/ChangeLog
gcc/config/sh/sh.c

index 2a0bfe0db15c4fa421e98cc2a1b2113a669c8375..b5e5e6f6f8a897666723ca3e69be1f2f61421a7b 100644 (file)
@@ -1,3 +1,10 @@
+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".
index 18798d12f1ecd1de49079b4ce4343eafa92737d6..d1fb0e298c0a96ff236d86d4c8b1053cacd09eb4 100644 (file)
@@ -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));
 }