This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: ping patches


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]