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]

Re: x86_64 merger part 14 - use ANY_QI_REG_P


On Wed, Mar 14, 2001 at 11:47:21AM -0800, Matt Kraai wrote:
> You committed a change to i386.h while committing this change (as
> far as I can tell).  It changed the definition of GENERAL_REG_P(X)
> from
> 
>   (REG_P (X) && GENERAL_REG_REGNO_P (X))
> 
> to
> 
>   (REG_P (X) && GENERAL_REGNO_P (X))

Doh.  GENERAL_REG_REGNO_P seems to have disappeared.  I'm
currently bootstrapping on i686-pc-linux-gnu the following macro:

  (REG_P (X) && GENERAL_REGNO_P (REGNO (X)))

It just passed stage1 without any of these warnings.

Matt


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