This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa] Make tsi insert iterators handle chains of COMPOUND_EXPRs
Hello,
> On Thu, Aug 28, 2003 at 11:59:13PM +0200, Zdenek Dvorak wrote:
> > this would be fine with me; what gets wrong is that
> > tsi_link_after (tsi, a, TSI_NEW_STMT);
> > tsi_link_before (tsi, b, TSI_NEW_STMT);
> >
> > will put b in the middle of a; which is inconsistend with the fact that
> > tsi_link_before would not.
aw, sorry, I of course meant
tsi_link_after (tsi, a, TSI_NEW_STMT);
tsi_link_after (tsi, b, TSI_NEW_STMT);
Zdenek