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: [PATCH]: Eliminate C++ keywords from target files


On Wed, 6 Aug 2008, Ian Lance Taylor wrote:

> > --- orig/egcc-SVN20080731/gcc/config/arm/arm.md	2008-06-02 02:00:07.000000000 +0200
> > +++ egcc-SVN20080731/gcc/config/arm/arm.md	2008-07-31 21:04:48.000000000 +0200
> > @@ -5286,12 +5286,12 @@
> >  			   && GET_CODE (base = XEXP (base, 0)) == REG))
> >  		      && REGNO_POINTER_ALIGN (REGNO (base)) >= 32)
> >  		    {
> > -		      rtx new;
> > +		      rtx new_rtx;
> >
> > -		      new = widen_memory_access (operands[1], SImode,
> > +		      new_rtx = widen_memory_access (operands[1], SImode,
> >  						 ((INTVAL (offset) & ~3)
> >  						  - INTVAL (offset)));
>
> Fix indentation.

Done.


> > @@ -2777,7 +2777,7 @@ frv_print_operand (FILE * file, rtx x, i
> >    HOST_WIDE_INT value;
> >    int offset;
> >
> > -  if (code != 0 && !isalpha (code))
> > +  if (code != 0 && !ISALPHA (code))
> >      value = 0;
> >
> >    else if (GET_CODE (x) == CONST_INT)
>
> Seems unrelated, but it's OK anyhow.
> Thanks.
> Ian

Good catch.  I had to fix it to compile frv's cc1, and forgot I did it.
I broke out a separate ChangeLog entry for it and checked it all in.

		Thanks!
		--Kaveh
--
Kaveh R. Ghazi			ghazi@caip.rutgers.edu


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