diff options
author | Andrew Carlotti <andrew.carlotti@arm.com> | 2022-07-27 15:11:51 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-07-28 14:09:06 +0200 |
commit | aab41924aa812f54c746af0ead0c556b6e57a3f0 (patch) | |
tree | e1918c7bc829050f25868cc70d08a2ea219d2733 /gcc | |
parent | 375ae1043750e32b27df9f7a216075f0ae6dcb98 (diff) | |
download | gcc-aab41924aa812f54c746af0ead0c556b6e57a3f0.zip gcc-aab41924aa812f54c746af0ead0c556b6e57a3f0.tar.gz gcc-aab41924aa812f54c746af0ead0c556b6e57a3f0.tar.bz2 |
docs: Fix outdated reference to LOOPS_HAVE_MARKED_SINGLE_EXITS
gcc/ChangeLog:
* doc/loop.texi: Refer to LOOPS_HAVE_RECORDED_EXITS instead.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/doc/loop.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/loop.texi b/gcc/doc/loop.texi index d7b71a2..6e8657a 100644 --- a/gcc/doc/loop.texi +++ b/gcc/doc/loop.texi @@ -210,7 +210,7 @@ loop in depth-first search order in reversed CFG, ordered by dominance relation, and breath-first search order, respectively. @item @code{single_exit}: Returns the single exit edge of the loop, or @code{NULL} if the loop has more than one exit. You can only use this -function if LOOPS_HAVE_MARKED_SINGLE_EXITS property is used. +function if @code{LOOPS_HAVE_RECORDED_EXITS} is used. @item @code{get_loop_exit_edges}: Enumerates the exit edges of a loop. @item @code{just_once_each_iteration_p}: Returns true if the basic block is executed exactly once during each iteration of a loop (that is, it |