diff mbox

Fix a pasto

Message ID 4C4966FF.8040604@codesourcery.com
State New
Headers show

Commit Message

Jie Zhang July 23, 2010, 9:55 a.m. UTC
This patch fixes a pasto in GCC dumping. Is it OK?


Regards,

Comments

Richard Biener July 23, 2010, 10:10 a.m. UTC | #1
On Fri, Jul 23, 2010 at 11:55 AM, Jie Zhang <jie@codesourcery.com> wrote:
> This patch fixes a pasto in GCC dumping. Is it OK?

Ok.

Thanks,
Richard.

>
> Regards,
> --
> Jie Zhang
> CodeSourcery
>
Jie Zhang July 23, 2010, 10:53 a.m. UTC | #2
On 07/23/2010 06:10 PM, Richard Guenther wrote:
> On Fri, Jul 23, 2010 at 11:55 AM, Jie Zhang<jie@codesourcery.com>  wrote:
>> This patch fixes a pasto in GCC dumping. Is it OK?
>
> Ok.
>
Committed. Thanks!
diff mbox

Patch


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

Index: tree-sra.c
===================================================================
--- tree-sra.c	(revision 162448)
+++ tree-sra.c	(working copy)
@@ -4311,7 +4311,7 @@  ipa_sra_preliminary_function_checks (str
   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;
     }