tree-vect-transform.c (vect_update_inits_of_drs): Use vect_print_dump_info() to outpu...
authorUros Bizjak <ubizjak@gmail.com>
Thu, 3 May 2007 14:50:34 +0000 (16:50 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Thu, 3 May 2007 14:50:34 +0000 (16:50 +0200)
        * tree-vect-transform.c (vect_update_inits_of_drs): Use
        vect_print_dump_info() to output debug information.

From-SVN: r124380

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

index 8f1c3f48c02671ff0b6b33a44e6306c95d471e4e..3f855750e27e850fd4d0e86f4e3c3aaa5a334650 100644 (file)
@@ -1,3 +1,8 @@
+2007-05-03  Uros Bizjak  <ubizjak@gmail.com>
+
+       * tree-vect-transform.c (vect_update_inits_of_drs): Use
+       vect_print_dump_info() to output debug information.
+
 2007-05-03  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/31768
index 4775e2cd58282db48b992ea500b1dc9ea8398612..0ecbba59e8424f29a0049a4f2628c41b1bf06d3d 100644 (file)
@@ -4916,8 +4916,8 @@ vect_update_init_of_dr (struct data_reference *dr, tree niters)
    NITERS iterations were peeled from the loop represented by LOOP_VINFO.  
    This function updates the information recorded for the data references in 
    the loop to account for the fact that the first NITERS iterations had 
-   already been executed.  Specifically, it updates the initial_condition of the
-   access_function of all the data_references in the loop.  */
+   already been executed.  Specifically, it updates the initial_condition of
+   the access_function of all the data_references in the loop.  */
 
 static void
 vect_update_inits_of_drs (loop_vec_info loop_vinfo, tree niters)
@@ -4926,7 +4926,7 @@ vect_update_inits_of_drs (loop_vec_info loop_vinfo, tree niters)
   VEC (data_reference_p, heap) *datarefs = LOOP_VINFO_DATAREFS (loop_vinfo);
   struct data_reference *dr;
 
-  if (vect_dump && (dump_flags & TDF_DETAILS))
+  if (vect_print_dump_info (REPORT_DETAILS))
     fprintf (vect_dump, "=== vect_update_inits_of_dr ===");
 
   for (i = 0; VEC_iterate (data_reference_p, datarefs, i, dr); i++)