Hi, We removed FOR_EACH_LOOP_BREAK from the compiler six years ago, but it still shows up in the internals manual. Fix that.
Tested, committed as obvious. Thanks, Bill 2019-05-09 Bill Schmidt <wschm...@linux.ibm.com> * doc/loop.texi: Remove reference to FOR_EACH_LOOP_BREAK. Index: gcc/doc/loop.texi =================================================================== --- gcc/doc/loop.texi (revision 269976) +++ gcc/doc/loop.texi (working copy) @@ -86,10 +86,7 @@ the direction of traversal and the set of loops vi guaranteed to be visited exactly once, regardless of the changes to the loop tree, and the loops may be removed during the traversal. The newly created loops are never traversed, if they need to be visited, this -must be done separately after their creation. The @code{FOR_EACH_LOOP} -macro allocates temporary variables. If the @code{FOR_EACH_LOOP} loop -were ended using break or goto, they would not be released; -@code{FOR_EACH_LOOP_BREAK} macro must be used instead. +must be done separately after their creation. Each basic block contains the reference to the innermost loop it belongs to (@code{loop_father}). For this reason, it is only possible to have