This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] Fix tree-optimization/38079: segfault with -ftree-vectorizer-verbose=9



gcc-patches-owner@gcc.gnu.org wrote on 11/11/2008 15:24:20:

This part

>
> @@ -3376,18 +3376,18 @@ vect_analyze_data_refs (loop_vec_info lo
>           STMT_VINFO_DR_ALIGNED_TO (stmt_info) =
>                                 size_int (highest_pow2_factor
> (offset_iv.base)););.
>
> -         if (dump_file && (dump_flags & TDF_DETAILS))
> +         if (vect_dump && (dump_flags & TDF_DETAILS))
>             {

should be

@@ -3376,18 +3376,18 @@ vect_analyze_data_refs (loop_vec_info lo
          STMT_VINFO_DR_ALIGNED_TO (stmt_info) =
                                size_int (highest_pow2_factor
(offset_iv.base));

-         if (dump_file && (dump_flags & TDF_DETAILS))
+         if (vect_print_dump_info (REPORT_DETAILS))))
            {

Sorry,
Ira


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]