tree-sra.c (ipa_sra_preliminary_function_checks): Dump proper words when !tree_versionable_function_p.

* tree-sra.c (ipa_sra_preliminary_function_checks): Dump
	proper words when !tree_versionable_function_p.

From-SVN: r162453
This commit is contained in:
Jie Zhang 2010-07-23 10:52:43 +00:00 committed by Jie Zhang
parent 99bda4d570
commit a23c4464d8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-07-23 Jie Zhang <jie@codesourcery.com>
* tree-sra.c (ipa_sra_preliminary_function_checks): Dump
proper words when !tree_versionable_function_p.
2010-07-23 Richard Guenther <rguenther@suse.de>
PR tree-optimization/45037

View File

@ -4311,7 +4311,7 @@ ipa_sra_preliminary_function_checks (struct cgraph_node *node)
if (!tree_versionable_function_p (node->decl))
{
if (dump_file)
fprintf (dump_file, "Function not local to this compilation unit.\n");
fprintf (dump_file, "Function is not versionable.\n");
return false;
}