Commit af51c885 by Adam Nemet Committed by Adam Nemet

ira-int.h (struct ira_loop_tree_node): Improve comments for subloop_next/next…

ira-int.h (struct ira_loop_tree_node): Improve comments for subloop_next/next and subloops/childen fields.

	* ira-int.h (struct ira_loop_tree_node): Improve comments for
	subloop_next/next and subloops/childen fields.

From-SVN: r141873
parent 5800e0a0
2008-11-14 Adam Nemet <anemet@caviumnetworks.com>
* ira-int.h (struct ira_loop_tree_node): Improve comments for
subloop_next/next and subloops/childen fields.
2008-11-14 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> 2008-11-14 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* config/spu/spu-elf.h (STANDARD_STARTFILE_PREFIX_2): Disable default. * config/spu/spu-elf.h (STANDARD_STARTFILE_PREFIX_2): Disable default.
......
...@@ -83,11 +83,11 @@ struct ira_loop_tree_node ...@@ -83,11 +83,11 @@ struct ira_loop_tree_node
/* The node represents basic block if children == NULL. */ /* The node represents basic block if children == NULL. */
basic_block bb; /* NULL for loop. */ basic_block bb; /* NULL for loop. */
struct loop *loop; /* NULL for BB. */ struct loop *loop; /* NULL for BB. */
/* The next (loop) node of with the same parent. SUBLOOP_NEXT is /* NEXT/SUBLOOP_NEXT is the next node/loop-node of the same parent.
always NULL for BBs. */ SUBLOOP_NEXT is always NULL for BBs. */
ira_loop_tree_node_t subloop_next, next; ira_loop_tree_node_t subloop_next, next;
/* The first (loop) node immediately inside the node. SUBLOOPS is /* CHILDREN/SUBLOOPS is the first node/loop-node immediately inside
always NULL for BBs. */ the node. They are NULL for BBs. */
ira_loop_tree_node_t subloops, children; ira_loop_tree_node_t subloops, children;
/* The node immediately containing given node. */ /* The node immediately containing given node. */
ira_loop_tree_node_t parent; ira_loop_tree_node_t parent;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment