sched-deps.c (update_dep): Mark arguments with ATTRIBUTE_UNUSED.
authorMaxim Kuvyrkov <maxim@codesourcery.com>
Fri, 31 Aug 2007 13:08:55 +0000 (13:08 +0000)
committerMaxim Kuvyrkov <mkuvyrkov@gcc.gnu.org>
Fri, 31 Aug 2007 13:08:55 +0000 (13:08 +0000)
* sched-deps.c (update_dep): Mark arguments with ATTRIBUTE_UNUSED.
(sched_analyze_insn): Don't postprocess speculative dependencies when
target has no scheduling.
* tree-vect-transform.c (vect_estimate_min_profitable_iters): Fix
'uninitialized' warning.

From-SVN: r127989

gcc/ChangeLog
gcc/sched-deps.c
gcc/tree-vect-transform.c

index bc077fae8a459f627c1ffdc215ec502dc56ddf79..8e54cb943b2d89fd8be68927527e55b6cccfd6c7 100644 (file)
@@ -1,3 +1,11 @@
+2007-08-31  Maxim Kuvyrkov  <maxim@codesourcery.com>
+
+       * sched-deps.c (update_dep): Mark arguments with ATTRIBUTE_UNUSED.
+       (sched_analyze_insn): Don't postprocess speculative dependencies when
+       target has no scheduling.
+       * tree-vect-transform.c (vect_estimate_min_profitable_iters): Fix
+       'uninitialized' warning.
+
 2007-08-31  Richard Guenther  <rguenther@suse.de>
 
        * tree.c (build_complex_type): Always set TYPE_NAME for
index c0d9f5588e5d60c19f78170bdd35f2649741df35..433394956ab1a548b34977659554c15c5266568c 100644 (file)
@@ -943,7 +943,9 @@ change_spec_dep_to_hard (sd_iterator_def sd_it)
    data-speculative dependence should be updated.  */
 static enum DEPS_ADJUST_RESULT
 update_dep (dep_t dep, dep_t new_dep,
-           sd_iterator_def sd_it, rtx mem1, rtx mem2)
+           sd_iterator_def sd_it ATTRIBUTE_UNUSED,
+           rtx mem1 ATTRIBUTE_UNUSED,
+           rtx mem2 ATTRIBUTE_UNUSED)
 {
   enum DEPS_ADJUST_RESULT res = DEP_PRESENT;
   enum reg_note old_type = DEP_TYPE (dep);
@@ -2200,6 +2202,7 @@ sched_analyze_insn (struct deps *deps, rtx x, rtx insn)
   if (SCHED_GROUP_P (insn))
     fixup_sched_groups (insn);
 
+#ifdef INSN_SCHEDULING
   if ((current_sched_info->flags & DO_SPECULATION)
       && !sched_insn_is_legitimate_for_speculation_p (insn, 0))
     /* INSN has an internal dependency (e.g. r14 = [r14]) and thus cannot
@@ -2212,6 +2215,7 @@ sched_analyze_insn (struct deps *deps, rtx x, rtx insn)
           sd_iterator_cond (&sd_it, &dep);)
        change_spec_dep_to_hard (sd_it);
     }
+#endif
 }
 
 /* Analyze every insn between HEAD and TAIL inclusive, creating backward
index 7c5b1b20b4d020d45e03ccd205125efd07531dc9..00cc8c342185c40022b15b43d11945f606d4ed9c 100644 (file)
@@ -124,7 +124,7 @@ vect_estimate_min_profitable_iters (loop_vec_info loop_vinfo)
   basic_block *bbs = LOOP_VINFO_BBS (loop_vinfo);
   int nbbs = loop->num_nodes;
   int byte_misalign;
-  int innerloop_iters, factor;
+  int innerloop_iters = 0, factor;
 
   /* Cost model disabled.  */
   if (!flag_vect_cost_model)