summaryrefslogtreecommitdiff
path: root/gcc/ira-int.h
diff options
context:
space:
mode:
authornemet <nemet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-14 23:17:14 +0000
committernemet <nemet@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-14 23:17:14 +0000
commitb038c0c4a31db74ed9126577251edb017fd20c32 (patch)
tree3c6e48b55a5ac284e5233cb40cb523f97412c04c /gcc/ira-int.h
parent6a2afbe6d1b50723b6ebd8acc8f950f8a0dc040c (diff)
downloadgcc-b038c0c4a31db74ed9126577251edb017fd20c32.tar.gz
* ira-int.h (struct ira_loop_tree_node): Improve comments for
subloop_next/next and subloops/childen fields. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141873 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ira-int.h')
-rw-r--r--gcc/ira-int.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ira-int.h b/gcc/ira-int.h
index 0ed1ec3a9ec..0b2e9280388 100644
--- a/gcc/ira-int.h
+++ b/gcc/ira-int.h
@@ -83,11 +83,11 @@ struct ira_loop_tree_node
/* The node represents basic block if children == NULL. */
basic_block bb; /* NULL for loop. */
struct loop *loop; /* NULL for BB. */
- /* The next (loop) node of with the same parent. SUBLOOP_NEXT is
- always NULL for BBs. */
+ /* NEXT/SUBLOOP_NEXT is the next node/loop-node of the same parent.
+ SUBLOOP_NEXT is always NULL for BBs. */
ira_loop_tree_node_t subloop_next, next;
- /* The first (loop) node immediately inside the node. SUBLOOPS is
- always NULL for BBs. */
+ /* CHILDREN/SUBLOOPS is the first node/loop-node immediately inside
+ the node. They are NULL for BBs. */
ira_loop_tree_node_t subloops, children;
/* The node immediately containing given node. */
ira_loop_tree_node_t parent;