This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: ping patches
- From: Richard Sandiford <rsandifo at redhat dot com>
- To: Mark Mitchell <mark at codesourcery dot com>
- Cc: Andrew Pinski <pinskia at physics dot uc dot edu>, GCC Patches <gcc-patches at gcc dot gnu dot org>, Zdenek Dvorak <rakdver at atrey dot karlin dot mff dot cuni dot cz>
- Date: Thu, 02 Sep 2004 13:33:46 +0100
- Subject: Re: ping patches
- References: <CBD02145-F492-11D8-95FD-00039351ED8A@physics.uc.edu><412BE6F3.6050007@codesourcery.com>
Mark Mitchell <mark@codesourcery.com> writes:
> Andrew Pinski wrote:
>> http://gcc.gnu.org/ml/gcc-patches/2004-03/msg01150.html
>> [patch] Speculative prefetching
>> Improves SPEC with profiling info
>
> This patch is OK with a few changes.
It looks like some merge conflicts were misresolved. I installed
the attached patch as obvious in order to unbreak targets without
prefetch support.
Richard
* toplev.c (process_options): Fix typo.
Index: toplev.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/toplev.c,v
retrieving revision 1.915
diff -u -p -F^\([(a-zA-Z0-9_]\|#define\) -r1.915 toplev.c
--- toplev.c 1 Sep 2004 20:58:52 -0000 1.915
+++ toplev.c 2 Sep 2004 12:25:55 -0000
@@ -1912,7 +1912,7 @@ process_options (void)
if (flag_speculative_prefetching)
{
if (flag_speculative_prefetching_set)
- WARNIng ("-fspeculative-prefetching not supported for this target");
+ warning ("-fspeculative-prefetching not supported for this target");
flag_speculative_prefetching = 0;
}
#else