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: regrename.c sanity check.


On Tue, Apr 30, 2002 at 02:24:39PM -0500, Tom Rix wrote:
>  	  constrain_operands (1);
>  	  preprocess_constraints ();
> +
> +	  if (which_alternative == -1)
> +	    fatal_insn_not_found (insn);

Better as

  if (! constrain_operands (1))
    fatal_insn_not_found (insn);

Ok with that change.


r~


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