This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: i386.md patch fix enable-checking bootstrap failure
- From: Richard Henderson <rth at redhat dot com>
- To: Graham Stott <graham dot stott at btinternet dot com>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Thu, 1 Aug 2002 16:39:49 -0700
- Subject: Re: i386.md patch fix enable-checking bootstrap failure
- References: <3D45D1F7.5010406@btinternet.com> <20020801161701.B2896@redhat.com> <3D49C2B6.5060202@btinternet.com>
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~