diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2007-05-03 16:50:34 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2007-05-03 16:50:34 +0200 |
commit | 98120f628b730242962ca6d9b4ed3bf6bb343cff (patch) | |
tree | b3aa75dd15524a3c619c36756d738964c90b4873 /gcc | |
parent | f3ba4235297de12ef987881cb250fefa34e995a8 (diff) | |
download | gcc-98120f628b730242962ca6d9b4ed3bf6bb343cff.zip gcc-98120f628b730242962ca6d9b4ed3bf6bb343cff.tar.gz gcc-98120f628b730242962ca6d9b4ed3bf6bb343cff.tar.bz2 |
tree-vect-transform.c (vect_update_inits_of_drs): Use vect_print_dump_info() to output debug information.
* tree-vect-transform.c (vect_update_inits_of_drs): Use
vect_print_dump_info() to output debug information.
From-SVN: r124380
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-vect-transform.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8f1c3f4..3f85575 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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 * config/i386/i386.c (print_operand) ['z']: Output 'w' for operands of size 2 when operand is not MEM_P. diff --git a/gcc/tree-vect-transform.c b/gcc/tree-vect-transform.c index 4775e2c..0ecbba59 100644 --- a/gcc/tree-vect-transform.c +++ b/gcc/tree-vect-transform.c @@ -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++) |