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: [3.3] [PATCH] Fix typo in config/i386/i386.h


This exists on the 3.3 branch as well.

Eric Botcazou writes:
> Hi,
> 
> Alexander spotted a typo in config/i386/i386.h from GCC 3.2.3 by visual 
> inspection.
> 
> Bootstrapped/regtested (c,c++,objc,f77 mainline) on i586-redhat-linux-gnu, 
> applied on mainline as obvious.
> 
> -- 
> Eric Botcazou
> 
> 
> 2003-05-10  Alexander Aganichev  <aaganichev@yandex.ru>
> 
> 	* config/i386/i386.h (MODES_TIEABLE_P): Fix typo.
> Index: config/i386/i386.h
> ===================================================================
> RCS file: /cvs/gcc/gcc/gcc/config/i386/i386.h,v
> retrieving revision 1.334
> diff -u -r1.334 i386.h
> --- config/i386/i386.h	28 Apr 2003 15:11:06 -0000	1.334
> +++ config/i386/i386.h	10 May 2003 19:32:41 -0000
> @@ -1087,7 +1087,7 @@
>  	    && (TARGET_64BIT || !TARGET_PARTIAL_REG_STALL))	\
>          || ((MODE1) == DImode && TARGET_64BIT))			\
>         && ((MODE2) == HImode || (MODE2) == SImode		\
> -	   || ((MODE1) == QImode				\
> +	   || ((MODE2) == QImode				\
>  	       && (TARGET_64BIT || !TARGET_PARTIAL_REG_STALL))	\
>  	   || ((MODE2) == DImode && TARGET_64BIT))))
>  


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