OSDN Git Service

gcc/
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Apr 2011 11:53:02 +0000 (11:53 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Apr 2011 11:53:02 +0000 (11:53 +0000)
* tree-vect-stmts.c (vectorizable_load): Print the number of copies
in the dump file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172420 138bc75d-0d04-0410-961f-82ee72b054a4

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

index a0c881d..888c18a 100644 (file)
@@ -1,5 +1,10 @@
 2011-04-14  Richard Sandiford  <rdsandiford@googlemail.com>
 
+       * tree-vect-stmts.c (vectorizable_load): Print the number of copies
+       in the dump file.
+
+2011-04-14  Richard Sandiford  <rdsandiford@googlemail.com>
+
        * doc/options.texi (Negative): Explicitly mention that the
        Negative chain must be circular.
 
index 16020e5..9e9a0bb 100644 (file)
@@ -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.  **/