Commit 6f9c49e0 by Jeff Law

* loop.c (addr_overlap_p): Delete.

From-SVN: r3702
parent db2e669b
......@@ -2705,29 +2705,6 @@ invariant_p (x)
return 1 + conditional;
}
/* Return 1 if OTHER (a mem ref) overlaps the area of memory
which is SIZE bytes starting at BASE. */
int
addr_overlap_p (other, base, size)
rtx other;
rtx base;
HOST_WIDE_INT size;
{
HOST_WIDE_INT start = 0, end;
if (GET_CODE (base) == CONST)
base = XEXP (base, 0);
if (GET_CODE (base) == PLUS
&& GET_CODE (XEXP (base, 1)) == CONST_INT)
{
start = INTVAL (XEXP (base, 1));
base = XEXP (base, 0);
}
end = start + size;
return refers_to_mem_p (other, base, start, end);
}
/* Return nonzero if all the insns in the loop that set REG
are INSN and the immediately following insns,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment