summaryrefslogtreecommitdiff
path: root/gcc/cfgloop.h
diff options
context:
space:
mode:
authorrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-04 09:53:29 +0000
committerrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-04 09:53:29 +0000
commite08087848d41ad8f4cbd6954cc6e867fcd15f7ec (patch)
treebdea2d844db01608d3fa45463515da9ae3b75274 /gcc/cfgloop.h
parentdc914c6d6761b4ac09e6135690c48e8bc9f0b367 (diff)
downloadgcc-e08087848d41ad8f4cbd6954cc6e867fcd15f7ec.tar.gz
* cfgloop.h (enum li_flags): Make the constants powers of two.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120433 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgloop.h')
-rw-r--r--gcc/cfgloop.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h
index 19fc93fcc66..3116abf3767 100644
--- a/gcc/cfgloop.h
+++ b/gcc/cfgloop.h
@@ -406,11 +406,11 @@ number_of_loops (void)
enum li_flags
{
- LI_INCLUDE_ROOT, /* Include the fake root of the loop tree. */
- LI_FROM_INNERMOST, /* Iterate over the loops in the reverse order,
+ LI_INCLUDE_ROOT = 1, /* Include the fake root of the loop tree. */
+ LI_FROM_INNERMOST = 2,/* Iterate over the loops in the reverse order,
starting from innermost ones. */
- LI_ONLY_INNERMOST, /* Iterate only over innermost loops. */
- LI_ONLY_OLD /* Do not traverse the loops created during the
+ LI_ONLY_INNERMOST = 4,/* Iterate only over innermost loops. */
+ LI_ONLY_OLD = 8 /* Do not traverse the loops created during the
traversal (this is the default behavior with
LI_FROM_INNERMOST). */
};