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
On Thu, Aug 28, 2003 at 11:40:29PM +0200, Zdenek Dvorak wrote:
> while this may seem strange, it is intentional; with this behavior,
> tsi_link_xxx (tsi, a, TSI_CHAIN_END);
> tsi_link_xxx (tsi, b, TSI_CHAIN_END);
>
> will link chain b to the correct position wrto chain a, regardless of
> what xxx is.
That doesn't make any sense at all. "Correct" how? And why
would you be defining the behaviour I described as wrong wrt
tsi_link_before (tsi, a, TSI_NEW_STMT);
tsi_link_before (tsi, b, TSI_NEW_STMT);
r~