mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
448476ff53
commit
446fd64280
|
|
@ -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>
|
2016-03-16 Tom de Vries <tom@codesourcery.com>
|
||||||
|
|
||||||
PR lto/70187
|
PR lto/70187
|
||||||
|
|
|
||||||
|
|
@ -1772,8 +1772,9 @@ vect_analyze_loop_2 (loop_vec_info loop_vinfo, bool &fatal)
|
||||||
{
|
{
|
||||||
if (dump_enabled_p ())
|
if (dump_enabled_p ())
|
||||||
dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
|
dump_printf_loc (MSG_MISSED_OPTIMIZATION, vect_location,
|
||||||
"not vectorized: loop contains function calls"
|
"not vectorized: loop nest containing two "
|
||||||
" or data references that cannot be analyzed\n");
|
"or more consecutive inner loops cannot be "
|
||||||
|
"vectorized\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue