diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2011-04-14 11:53:02 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2011-04-14 11:53:02 +0000 |
commit | 0ea25ecd37d7874fdecdc0c6922b196ea4fdf6a8 (patch) | |
tree | 6d11a55d9b5f5ad8d4c1419c42546b9a8b1226d2 /gcc | |
parent | 77b104859e6bc366202bafa2f0490aa8f05ba4a1 (diff) | |
download | gcc-0ea25ecd37d7874fdecdc0c6922b196ea4fdf6a8.zip gcc-0ea25ecd37d7874fdecdc0c6922b196ea4fdf6a8.tar.gz gcc-0ea25ecd37d7874fdecdc0c6922b196ea4fdf6a8.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-vect-stmts.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a0c881d..888c18a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c index 16020e5..9e9a0bb 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. **/ |