[PATCH] Small cleanups to cse.c
Eric Botcazou
ebotcazou@libertysurf.fr
Sat Nov 25 16:22:00 GMT 2006
> @@ -3715,9 +3710,11 @@ record_jump_equiv (rtx insn, int taken)
> int reversed_nonequality = 0;
> enum rtx_code code;
>
> +#ifdef ENABLE_CHECKING
> /* Ensure this is the right kind of insn. */
> - if (! any_condjump_p (insn))
> - return;
> + gcc_assert (any_condjump_p (insn));
> +#endif
gcc_assert is generally not guarded like that. Could you add a small comment?
--
Eric Botcazou
More information about the Gcc-patches
mailing list