Commit be12e697 by Kazu Hirata Committed by Kazu Hirata

tree-flow-inline.h: Fix a comment typo.

	* tree-flow-inline.h: Fix a comment typo.
	* doc/tree-ssa.texi: Fix a typo.

From-SVN: r98992
parent 4e81e7c2
2005-04-29 Kazu Hirata <kazu@cs.umass.edu>
* tree-flow-inline.h: Fix a comment typo.
* doc/tree-ssa.texi: Fix a typo.
2005-04-29 Nathan Sidwell <nathan@codesourcery.com> 2005-04-29 Nathan Sidwell <nathan@codesourcery.com>
* config/fr30/fr30.c (fr30_expand_prologue): Use gcc_assert and * config/fr30/fr30.c (fr30_expand_prologue): Use gcc_assert and
......
...@@ -1051,7 +1051,7 @@ through the use list, preventing insertions and deletions in the list from ...@@ -1051,7 +1051,7 @@ through the use list, preventing insertions and deletions in the list from
resulting in invalid pointers. This is a little slower since it adds a resulting in invalid pointers. This is a little slower since it adds a
placeholder element and moves it through the list. This element must be placeholder element and moves it through the list. This element must be
also be removed if the loop is terminated early. A macro also be removed if the loop is terminated early. A macro
(@code{BREAK_FROM SAFE_IMM_USE} is provided for this: (@code{BREAK_FROM SAFE_IMM_USE}) is provided for this:
@smallexample @smallexample
FOR_EACH_IMM_USE_SAFE (use_p, iter, var) FOR_EACH_IMM_USE_SAFE (use_p, iter, var)
......
...@@ -203,7 +203,7 @@ static inline void ...@@ -203,7 +203,7 @@ static inline void
link_imm_use_to_list (ssa_imm_use_t *linknode, ssa_imm_use_t *list) link_imm_use_to_list (ssa_imm_use_t *linknode, ssa_imm_use_t *list)
{ {
/* Link the new node at the head of the list. If we are in the process of /* Link the new node at the head of the list. If we are in the process of
traversing the list, we wont visit any new nodes added to it. */ traversing the list, we won't visit any new nodes added to it. */
linknode->prev = list; linknode->prev = list;
linknode->next = list->next; linknode->next = list->next;
list->next->prev = linknode; list->next->prev = linknode;
......
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