]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix reference to the dom walker function in the documentation
authorAndi Kleen <ak@gcc.gnu.org>
Thu, 8 Aug 2024 15:46:33 +0000 (08:46 -0700)
committerAndi Kleen <ak@gcc.gnu.org>
Sat, 10 Aug 2024 15:34:54 +0000 (08:34 -0700)
It is using a class now with a different name.

gcc/ChangeLog:

* doc/cfg.texi: Fix references to dom_walker.

gcc/doc/cfg.texi

index 9a22420f91f554756569897bffdc9021db5a6ec1..a6f2b9f97d63d730308119b147ec4e539121cac8 100644 (file)
@@ -83,13 +83,13 @@ lexicographical order, except @code{ENTRY_BLOCK} and @code{EXIT_BLOCK}.
 The macro @code{FOR_ALL_BB} also visits all basic blocks in
 lexicographical order, including @code{ENTRY_BLOCK} and @code{EXIT_BLOCK}.
 
-@findex post_order_compute, inverted_post_order_compute, walk_dominator_tree
+@findex post_order_compute, inverted_post_order_compute, dom_walker::walk
 The functions @code{post_order_compute} and @code{inverted_post_order_compute}
 can be used to compute topological orders of the CFG.  The orders are
 stored as vectors of basic block indices.  The @code{BASIC_BLOCK} array
 can be used to iterate each basic block by index.
 Dominator traversals are also possible using
-@code{walk_dominator_tree}.  Given two basic blocks A and B, block A
+@code{dom_walker::walk}.  Given two basic blocks A and B, block A
 dominates block B if A is @emph{always} executed before B@.
 
 Each @code{basic_block} also contains pointers to the first