This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Proposed major change to combine
On Thu, Mar 08, 2001 at 12:03:09PM -0500, Michael Meissner wrote:
> > Whenever three insns are cheaper than two insns,
> > the three insns would be better.
>
> But you can already do that with define_split.
No you can't. Not within combine directly, anyway. It'll
notice that you're split generated too many insns and abort
the change. The only way to do this sort of thing at the
moment is to define a fake combination insn and split it
after reload.
r~