Hi,

On Tue, 19 Nov 2013, Richard Biener wrote:

> $subject - the following turns
> 
>  loop_iterator li;
>  FOR_EACH_LOOP (li, loop, LI_ONLY_INNERMOST)
>    {
>      ...
>      if ()
>        FOR_EACH_LOOP_BREAK;
>    }
> 
> into
> 
>  FOR_EACH_LOOP (loop, LI_ONLY_INNERMOST)
>    {
>      ...
>      if ()
>        break;
>    }

OMG, finally a c++ification that _shrinks_ client code instead of 
bloating it.

SCNR  :)


Ciao,
Michael.

Reply via email to