tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by reporting malformed loop nest.

* tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
	reporting malformed loop nest.

From-SVN: r234254
This commit is contained in:
Bin Cheng 2016-03-16 10:57:34 +00:00 committed by Bin Cheng
parent 448476ff53
commit 446fd64280
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2016-03-16 Bin Cheng <bin.cheng@arm.com>
* tree-vect-loop.c (vect_analyze_loop_2): Fix wrong dump info by
reporting malformed loop nest.
2016-03-16 Tom de Vries <tom@codesourcery.com>
PR lto/70187

View File

@ -1772,8 +1772,9 @@ vect_analyze_loop_2 (loop_vec_info loop_vinfo, bool &fatal)
{
if (dump_enabled_p ())
dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
"not vectorized: loop contains function calls"
" or data references that cannot be analyzed\n");
"not vectorized: loop nest containing two "
"or more consecutive inner loops cannot be "
"vectorized\n");
return false;
}