| Submitter | Jie Zhang |
|---|---|
| Date | July 23, 2010, 9:55 a.m. |
| Message ID | <4C4966FF.8040604@codesourcery.com> |
| Download | mbox | patch |
| Permalink | /patch/59761/ |
| State | New |
| Headers | show |
Comments
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 >
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!
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; }