From: Richard Sandiford Date: Thu, 14 Apr 2011 11:53:02 +0000 (+0000) Subject: tree-vect-stmts.c (vectorizable_load): Print the number of copies in the dump file. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0ea25ecd37d7874fdecdc0c6922b196ea4fdf6a8;p=gcc.git tree-vect-stmts.c (vectorizable_load): Print the number of copies in the dump file. gcc/ * tree-vect-stmts.c (vectorizable_load): Print the number of copies in the dump file. From-SVN: r172420 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a0c881d445d..888c18ae1d4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-04-14 Richard Sandiford + + * tree-vect-stmts.c (vectorizable_load): Print the number of copies + in the dump file. + 2011-04-14 Richard Sandiford * doc/options.texi (Negative): Explicitly mention that the diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c index 16020e5c0ee..9e9a0bbe2f3 100644 --- a/gcc/tree-vect-stmts.c +++ b/gcc/tree-vect-stmts.c @@ -3935,7 +3935,7 @@ vectorizable_load (gimple stmt, gimple_stmt_iterator *gsi, gimple *vec_stmt, } if (vect_print_dump_info (REPORT_DETAILS)) - fprintf (vect_dump, "transform load."); + fprintf (vect_dump, "transform load. ncopies = %d", ncopies); /** Transform. **/