Commit 44ace968 by John Wroclawski

*** empty log message ***

From-SVN: r773
parent 8129842c
......@@ -1695,6 +1695,18 @@ immune_p (x, y, ydata)
return (xdata.start >= ydata.end || ydata.start >= xdata.end);
}
/* Similiar, but calls decompose. */
int
safe_from_earlyclobber (op, clobber)
rtx op, clobber;
{
struct decomposition early_data;
early_data = decompose (clobber);
return immune_p (op, clobber, early_data);
}
/* Main entry point of this file: search the body of INSN
for values that need reloading and record them with push_reload.
......
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