From: Jie Zhang Date: Fri, 23 Jul 2010 10:52:43 +0000 (+0000) Subject: tree-sra.c (ipa_sra_preliminary_function_checks): Dump proper words when !tree_versio... X-Git-Tag: releases/gcc-4.6.0~5480 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a23c4464d8013c09b319c70dc906770622f0349a;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7361e343a94f..cbe0146a5177 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-07-23 Jie Zhang + + * tree-sra.c (ipa_sra_preliminary_function_checks): Dump + proper words when !tree_versionable_function_p. + 2010-07-23 Richard Guenther PR tree-optimization/45037 diff --git a/gcc/tree-sra.c b/gcc/tree-sra.c index c051dd496f71..2ac6458e0f5b 100644 --- a/gcc/tree-sra.c +++ b/gcc/tree-sra.c @@ -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; }