This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa] inlining now works on bnw-simple-branch
- From: dewar at gnat dot com (Robert Dewar)
- To: jason at redhat dot com, rth at redhat dot com
- Cc: dnovillo at redhat dot com, gcc at gcc dot gnu dot org
- Date: Mon, 23 Sep 2002 17:09:30 -0400 (EDT)
- Subject: Re: [tree-ssa] inlining now works on bnw-simple-branch
> You can't handle && without a goto either.
>
> if (a && b)
> c;
> else
> d;
Actually there are many cases of short circuited forms which can be handled
with jump free code, and it is often desirable to make such transformations
on modern processors.