Richard Henderson <[EMAIL PROTECTED]> wrote on 09/05/2005 19:35:34:
> On Mon, May 09, 2005 at 05:45:24PM +0300, Mostafa Hagog wrote:
> > EXECUTE_IF_SET_IN_BITMAP (blocks_with_calls, 0, bb_index, bi)
> > {
> > ! if (! MEM_READONLY_P (x))
>
> Looks like you should push this check here:
>
> case MEM:
> if (!MEM_READONLY_P (x))
> {
> ...
> }
> x = XEXP (x, 0);
> goto repeat;
Yes, I agree, no need to waste compile time on those checks, we
know that there is no memory modifications for read-only memory.
>
>
>
> r~