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: i386.md patch fix enable-checking bootstrap failure


Richard Henderson wrote:
On Fri, Aug 02, 2002 at 12:22:30AM +0100, Graham Stott wrote:

I assume you mean write a new predicate any_fp_register_operand along
the lines of

int
any_fp_register_operand (op)
     rtx op;
{
   return register_operand (op) && ANY_FP_REG_P (op);
}

Yes. Though register_operand isn't needed, since ANY_FP_REG_P is a subset of that.


r~

OK I put together a revised patch I've got lots of idle time to kill.

Graham


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